From 750b407801e86f73cd5b76629db80e3ce53eb626 Mon Sep 17 00:00:00 2001 From: ant-222 <43175957+ant-222@users.noreply.github.com> Date: Sat, 18 Jan 2020 22:33:44 +0300 Subject: [PATCH] Add a missing include of stdio.h for snprintf() --- src/libs/decoders/SDL_sound.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libs/decoders/SDL_sound.c b/src/libs/decoders/SDL_sound.c index 18a0e70d..6fdd28b6 100644 --- a/src/libs/decoders/SDL_sound.c +++ b/src/libs/decoders/SDL_sound.c @@ -28,6 +28,8 @@ * This file written by Ryan C. Gordon. (icculus@icculus.org) */ +#include + #if HAVE_CONFIG_H # include #endif