Skip to content

Commit

Permalink
Fixed error formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jan 13, 2020
1 parent d2cda50 commit 3ce56f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/SDL_audiocvt.c
Expand Up @@ -677,7 +677,7 @@ SDL_BuildAudioTypeCVTFromFloat(SDL_AudioCVT *cvt, const SDL_AudioFormat dst_fmt)
}

if (!filter) {
return SDL_SetError("No conversion from float to format 0x.4x available", dst_fmt);
return SDL_SetError("No conversion from float to format 0x%.4x available", dst_fmt);
}

if (SDL_AddAudioCVTFilter(cvt, filter) < 0) {
Expand Down

0 comments on commit 3ce56f6

Please sign in to comment.