Changeset 36df27eb in mainline for uspace/srv/audio/hound/main.c


Ignore:
Timestamp:
2018-01-13T03:18:18Z (6 years ago)
Author:
GitHub <noreply@…>
Parents:
a53ed3a (diff), 08d4ea2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-13 03:18:18)
git-committer:
GitHub <noreply@…> (2018-01-13 03:18:18)
Message:

Merge 08d4ea2111e5db01d0a6194bd9da4248ee282dc7 into a53ed3a8097360ccf174e8d94fb407db919eb66a

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/audio/hound/main.c

    ra53ed3a r36df27eb  
    8080                log_fatal("Failed to initialize hound structure: %s",
    8181                    str_error(ret));
    82                 return -ret;
     82                return ret;
    8383        }
    8484
     
    9191        if (ret != EOK) {
    9292                log_fatal("Failed to register server: %s", str_error(ret));
    93                 return -ret;
     93                return ret;
    9494        }
    9595
     
    9999                    str_error(ret));
    100100                hound_server_unregister(id);
    101                 return -ret;
     101                return ret;
    102102        }
    103103        log_info("Running with service id %" PRIun, id);
Note: See TracChangeset for help on using the changeset viewer.