diff options
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index f2a5ffe96..024cf0b81 100644 --- a/src/audio_out/audio_alsa_out.c +++ b/src/audio_out/audio_alsa_out.c @@ -26,7 +26,7 @@ * (c) 2001 James Courtier-Dutton <James@superbug.demon.co.uk> * * - * $Id: audio_alsa_out.c,v 1.163 2006/07/16 16:18:09 dsalt Exp $ + * $Id: audio_alsa_out.c,v 1.164 2006/08/08 03:16:23 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -277,7 +277,7 @@ static void char *buf = NULL; va_start(args, fmt); - vasprintf(buf, fmt, args); + vasprintf(&buf, fmt, args); va_end(args); printf("%s: %s() %s.\n", file, function, buf); free(buf); |