Changes in uspace/app/tester/vfs/vfs1.c [210e50a:a000878c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/vfs/vfs1.c
r210e50a ra000878c 54 54 static char text[] = "Lorem ipsum dolor sit amet, consectetur adipisicing elit"; 55 55 56 static c har *read_root(void)56 static const char *read_root(void) 57 57 { 58 58 TPRINTF("Opening the root directory..."); … … 73 73 } 74 74 75 c har *test_vfs1(void)75 const char *test_vfs1(void) 76 76 { 77 77 if (mkdir(MOUNT_POINT, 0) != 0) … … 121 121 close(fd0); 122 122 123 c har *rv = read_root();123 const char *rv = read_root(); 124 124 if (rv != NULL) 125 125 return rv;
Note:
See TracChangeset
for help on using the changeset viewer.