Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in chapter0 #53

Open
chaomai opened this issue Oct 7, 2016 · 0 comments
Open

Typo in chapter0 #53

chaomai opened this issue Oct 7, 2016 · 0 comments

Comments

@chaomai
Copy link

chaomai commented Oct 7, 2016

Find a typo in section "I/O 和文件描述符" of chapter0.

Here is the code snippet in chapter0,

char *argv[2];
argv[0] = "cat";
### argv[1] = 0;
...

This is original code in book (reviewed rev7, rev8 and rev9),

char *argv[2];
argv[0] = "cat";
argv[1] = 0;
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant