Changes in uspace/app/modplay/modplay.c [b7fd2a0:43dd72b7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/modplay/modplay.c
rb7fd2a0 r43dd72b7 40 40 #include <stdio.h> 41 41 #include <stdlib.h> 42 #include <str_error.h>43 42 #include <trackmod.h> 44 43 … … 79 78 void *buffer; 80 79 size_t buffer_size; 81 errno_t rc;80 int rc; 82 81 83 82 if (argc != 2) { … … 118 117 rc = hound_context_connect_target(hound, HOUND_DEFAULT_TARGET); 119 118 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); 121 120 return 1; 122 121 }
Note:
See TracChangeset
for help on using the changeset viewer.