Changes in uspace/app/tester/stdio/stdio1.c [7e752b2:2d11a7d8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/stdio/stdio1.c
r7e752b2 r2d11a7d8 36 36 static char buf[BUF_SIZE + 1]; 37 37 38 c onst char *test_stdio1(void)38 char *test_stdio1(void) 39 39 { 40 40 FILE *file; 41 c onst char *file_name = "/readme";41 char *file_name = "/readme"; 42 42 43 43 TPRINTF("Open file \"%s\"...", file_name); … … 60 60 61 61 buf[cnt] = '\0'; 62 TPRINTF("Read % zu bytes, string \"%s\"\n", cnt, buf);62 TPRINTF("Read %u bytes, string \"%s\"\n", cnt, buf); 63 63 64 64 TPRINTF("Seek to beginning...");
Note:
See TracChangeset
for help on using the changeset viewer.