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