Changes in uspace/app/tester/vfs/vfs1.c [19f857a:210e50a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/vfs/vfs1.c
r19f857a r210e50a 30 30 #include <stdio.h> 31 31 #include <stdlib.h> 32 #include <str .h>32 #include <string.h> 33 33 #include <vfs/vfs.h> 34 34 #include <unistd.h> … … 54 54 static char text[] = "Lorem ipsum dolor sit amet, consectetur adipisicing elit"; 55 55 56 static c onst char *read_root(void)56 static char *read_root(void) 57 57 { 58 58 TPRINTF("Opening the root directory..."); … … 73 73 } 74 74 75 c onst char *test_vfs1(void)75 char *test_vfs1(void) 76 76 { 77 77 if (mkdir(MOUNT_POINT, 0) != 0) … … 121 121 close(fd0); 122 122 123 c onst char *rv = read_root();123 char *rv = read_root(); 124 124 if (rv != NULL) 125 125 return rv;
Note:
See TracChangeset
for help on using the changeset viewer.