Changeset 3b47db6 in mainline for uspace/app/download/main.c


Ignore:
Timestamp:
2018-01-04T20:50:53Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
58e4d85
Parents:
c81d4f1
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:53)
Message:

(optional) Remove EXIT_RC().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/download/main.c

    rc81d4f1 r3b47db6  
    240240        if (ofile != NULL && fclose(ofile) != 0) {
    241241                printf("Error writing '%s'.\n", ofname);
    242                 return EXIT_RC(EIO);
     242                return EIO;
    243243        }
    244244
     
    252252        if (ofile != NULL)
    253253                fclose(ofile);
    254         return EXIT_RC(rc);
     254        return rc;
    255255}
    256256
Note: See TracChangeset for help on using the changeset viewer.