Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/modplay/modplay.c

    rb7fd2a0 r43dd72b7  
    4040#include <stdio.h>
    4141#include <stdlib.h>
    42 #include <str_error.h>
    4342#include <trackmod.h>
    4443
     
    7978        void *buffer;
    8079        size_t buffer_size;
    81         errno_t rc;
     80        int rc;
    8281
    8382        if (argc != 2) {
     
    118117        rc = hound_context_connect_target(hound, HOUND_DEFAULT_TARGET);
    119118        if (rc != EOK) {
    120                 printf("Error connecting default audio target: %s.\n", str_error(rc));
     119                printf("Error connecting default audio target (%d).\n", rc);
    121120                return 1;
    122121        }
Note: See TracChangeset for help on using the changeset viewer.