Changes in uspace/app/bdsh/cmds/modules/cat/cat.c [06e724e1:3cefd70] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/cat/cat.c
r06e724e1 r3cefd70 164 164 { 165 165 int fd, bytes = 0, count = 0, reads = 0; 166 off64_t total = 0; 166 167 char *buff = NULL; 167 168 int i; … … 173 174 return 1; 174 175 } 176 177 total = lseek(fd, 0, SEEK_END); 178 lseek(fd, 0, SEEK_SET); 175 179 176 180 if (NULL == (buff = (char *) malloc(blen + 1))) {
Note:
See TracChangeset
for help on using the changeset viewer.