Changes in uspace/app/gunzip/gunzip.c [b93ea46a:d5c1051] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/gunzip/gunzip.c
rb93ea46a rd5c1051 58 58 } 59 59 60 rc = fseek(f, 0, SEEK_END); 61 if (rc != 0) { 60 if (fseek(f, 0, SEEK_END) < 0) { 62 61 printf("Error determining size of '%s'\n", argv[1]); 63 62 fclose(f); … … 72 71 } 73 72 74 rc = fseek(f, 0, SEEK_SET); 75 if (rc != 0) { 73 if (fseek(f, 0, SEEK_SET) < 0) { 76 74 printf ("Error rewinding '%s'\n", argv[1]); 77 75 fclose(f);
Note:
See TracChangeset
for help on using the changeset viewer.