Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/trackmod/xm.c

    rb7fd2a0 r16bfcd3  
    5353 * @return EOK on success, EIO on format error, ENOMEM if out of memory.
    5454 */
    55 static errno_t trackmod_xm_load_order_list(xm_hdr_t *xm_hdr, trackmod_module_t *module)
    56 {
    57         errno_t rc;
     55static int trackmod_xm_load_order_list(xm_hdr_t *xm_hdr, trackmod_module_t *module)
     56{
     57        int rc;
    5858        size_t i;
    5959
     
    9494 * @return        EOK on success, EINVAL if there is error in the coded data.
    9595 */
    96 static errno_t trackmod_xm_decode_pattern(uint8_t *data, size_t dsize,
     96static int trackmod_xm_decode_pattern(uint8_t *data, size_t dsize,
    9797    trackmod_pattern_t *pattern)
    9898{
     
    162162 * @return EOK on success, EIO on format error, ENOMEM if out of memory.
    163163 */
    164 static errno_t trackmod_xm_load_patterns(FILE *f, trackmod_module_t *module)
     164static int trackmod_xm_load_patterns(FILE *f, trackmod_module_t *module)
    165165{
    166166        size_t i;
     
    173173        uint8_t *buf = NULL;
    174174        long seek_amount;
    175         errno_t rc;
    176         int ret;
     175        int rc;
    177176
    178177        module->pattern = calloc(sizeof(trackmod_pattern_t), module->patterns);
     
    183182
    184183        for (i = 0; i < module->patterns; i++) {
    185                 ret = fread(&pattern, 1, sizeof(xm_pattern_t), f);
    186                 if (ret != sizeof(xm_pattern_t)) {
     184                rc = fread(&pattern, 1, sizeof(xm_pattern_t), f);
     185                if (rc != sizeof(xm_pattern_t)) {
    187186                        rc = EIO;
    188187                        goto error;
     
    281280 * @return EOK on success, EIO on format error, ENOMEM if out of memory.
    282281 */
    283 static errno_t trackmod_xm_load_instruments(xm_hdr_t *xm_hdr, FILE *f,
     282static int trackmod_xm_load_instruments(xm_hdr_t *xm_hdr, FILE *f,
    284283    trackmod_module_t *module)
    285284{
     
    297296        void *smp_data;
    298297        long pos;
    299         errno_t rc;
    300         int ret;
     298        int rc;
    301299
    302300        module->instrs = uint16_t_le2host(xm_hdr->instruments);
     
    307305        for (i = 0; i < module->instrs; i++) {
    308306                pos = ftell(f);
    309                 ret = fread(&instr, 1, sizeof(xm_instr_t), f);
    310                 if (ret != sizeof(xm_instr_t)) {
     307                rc = fread(&instr, 1, sizeof(xm_instr_t), f);
     308                if (rc != sizeof(xm_instr_t)) {
    311309                        rc = EIO;
    312310                        goto error;
     
    317315
    318316                if (samples > 0) {
    319                         ret = fread(&instrx, 1, sizeof(xm_instr_ext_t), f);
    320                         if (ret != sizeof(xm_instr_ext_t)) {
     317                        rc = fread(&instrx, 1, sizeof(xm_instr_ext_t), f);
     318                        if (rc != sizeof(xm_instr_ext_t)) {
    321319                                rc = EIO;
    322320                                goto error;
     
    348346                        pos = ftell(f);
    349347
    350                         ret = fread(&smp, 1, sizeof(xm_smp_t), f);
    351                         if (ret != sizeof(xm_smp_t)) {
     348                        rc = fread(&smp, 1, sizeof(xm_smp_t), f);
     349                        if (rc != sizeof(xm_smp_t)) {
    352350                                rc = EIO;
    353351                                goto error;
     
    422420 *                or if any error is found in the format of the file.
    423421 */
    424 errno_t trackmod_xm_load(char *fname, trackmod_module_t **rmodule)
     422int trackmod_xm_load(char *fname, trackmod_module_t **rmodule)
    425423{
    426424        FILE *f = NULL;
     
    429427        size_t nread;
    430428        size_t hdr_size;
    431         errno_t rc;
     429        int rc;
    432430
    433431        f = fopen(fname, "rb");
Note: See TracChangeset for help on using the changeset viewer.