diff src/sound.h @ 576:6db80f4ab17c

[xemacs-hg @ 2001-05-25 05:42:25 by martinb] Cleaning up after error-frobbing patch: More compiler warnings/errors
author martinb
date Fri, 25 May 2001 05:42:26 +0000
parents 183866b06e0b
children 190b164ddcac
line wrap: on
line diff
--- a/src/sound.h	Fri May 25 04:22:33 2001 +0000
+++ b/src/sound.h	Fri May 25 05:42:26 2001 +0000
@@ -31,8 +31,8 @@
 
 # define sound_perror(string)						 \
 do {									 \
-  Bufbyte *errmess;							 \
-  Bufbyte *string_int;							 \
+  char *errmess;							 \
+  char *string_int;							 \
   /* #### fix this to GET_STRERROR in my mule ws */			 \
   EXTERNAL_TO_C_STRING (strerror (errno), errmess, Qnative);		 \
   EXTERNAL_TO_C_STRING (string, string_int, Qnative);			 \
@@ -40,7 +40,7 @@
 } while (0)
 # define sound_warn(string)					\
 do {								\
-  Bufbyte *string_int;						\
+  char *string_int;						\
   EXTERNAL_TO_C_STRING (GETTEXT (string), string_int, Qnative);	\
   warn_when_safe (Qsound, Qwarning, "audio: %s", string_int);	\
 } while (0)