xv6-chinese icon indicating copy to clipboard operation
xv6-chinese copied to clipboard

Typo in chapter0

Open chaomai opened this issue 8 years ago • 0 comments

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;
...

chaomai avatar Oct 07 '16 16:10 chaomai