* sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 15 Jan 2009 18:04:34 +0000 (18:04 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 15 Jan 2009 18:04:34 +0000 (18:04 +0000)
  Reported by David Robinow <drobinow@gmail.com>.

src/ChangeLog
src/sound.c

index 93aa087..6ec71d1 100644 (file)
@@ -1,3 +1,8 @@
+2009-01-15  Juanma Barranquero  <lekktu@gmail.com>
+
+       * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
+       Reported by David Robinow <drobinow@gmail.com>.
+
 2009-01-15  Kenichi Handa  <handa@m17n.org>
 
        * coding.c (detect_coding_system): Fix handling of
index 8f54a7a..2c723a4 100644 (file)
@@ -1301,14 +1301,14 @@ alsa_init (sd)
 
 /* BEGIN: Windows specific functions */
 
-#define SOUND_WARNING(fun, error, text)                   \
-  {                                               \
-    char buf[1024];                               \
-    char err_string[MAXERRORLENGTH];              \
+#define SOUND_WARNING(fun, error, text)            \
+  {                                                \
+    char buf[1024];                                \
+    char err_string[MAXERRORLENGTH];               \
     fun (error, err_string, sizeof (err_string));  \
-    snprintf (buf, sizeof (buf), "%s\nError: %s",  \
-             text, err_string);                   \
-    sound_warning (buf);                          \
+    _snprintf (buf, sizeof (buf), "%s\nError: %s", \
+              text, err_string);                  \
+    sound_warning (buf);                           \
   }
 
 static int