Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/wavplay/dplay.c

    r60b1076 r4a9728ec  
    151151            device_event_callback, pb);
    152152        if (ret != EOK) {
    153                 printf("Failed to register event callback: %s.\n",
    154                     str_error(ret));
     153                printf("Failed to register event callback.\n");
    155154                return;
    156155        }
     
    286285                            pb->f.sample_format);
    287286                        if (ret != EOK) {
    288                                 printf("Failed to start playback: %s\n",
    289                                     str_error(ret));
     287                                printf("Failed to start playback\n");
    290288                                return;
    291289                        }
     
    293291                        ret = audio_pcm_get_buffer_pos(pb->device, &pos);
    294292                        if (ret != EOK) {
    295                                 printf("Failed to update position indicator "
    296                                    "%s\n", str_error(ret));
     293                                printf("Failed to update position indicator\n");
    297294                        }
    298295                }
     
    311308                const int ret = audio_pcm_get_buffer_pos(pb->device, &pos);
    312309                if (ret != EOK) {
    313                         printf("Failed to update position indicator %s\n",
    314                             str_error(ret));
     310                        printf("Failed to update position indicator\n");
    315311                }
    316312                getuptime(&time);
     
    354350        ret = audio_pcm_get_info_str(session, &info);
    355351        if (ret != EOK) {
    356                 printf("Failed to get PCM info: %s.\n", str_error(ret));
     352                printf("Failed to get PCM info.\n");
    357353                goto close_session;
    358354        }
Note: See TracChangeset for help on using the changeset viewer.