diff --git a/multimedia/audio.c b/multimedia/audio.c index 63e1ebaae0c..2f5f9e6b8f1 100644 --- a/multimedia/audio.c +++ b/multimedia/audio.c @@ -341,7 +341,7 @@ static DWORD wodWrite(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize) count = write (WOutDev[wDevID].unixdev, lpData, lpWaveHdr->dwBufferLength); TRACE(wave,"write returned count %u !\n",count); if (count != lpWaveHdr->dwBufferLength) { - WARN(wave, " error writting !\n"); + WARN(wave, " error writing !\n"); return MMSYSERR_NOTENABLED; } WOutDev[wDevID].dwTotalPlayed += count; diff --git a/multimedia/dsound.c b/multimedia/dsound.c index 9cf5ed2e361..e8d18ad9de3 100644 --- a/multimedia/dsound.c +++ b/multimedia/dsound.c @@ -2099,12 +2099,12 @@ HRESULT WINAPI DirectSoundCreate(LPGUID lpGUID,LPDIRECTSOUND *ppDS,IUnknown *pUn audiofd = open("/dev/audio",O_WRONLY); if (audiofd == -1) { if (errno == ENODEV) { - TRACE(dsound, "No sound hardware\n"); + MSG("No sound hardware found.\n"); return DSERR_NODRIVER; } else if (errno == EBUSY) { - TRACE(dsound, "Sound device busy, will keep trying\n"); + MSG("Sound device busy, will keep trying.\n"); } else { - TRACE(dsound, "Unexpected error while checking for sound support\n"); + MSG("Unexpected error while checking for sound support.\n"); return DSERR_GENERIC; } } else {