diff src/ntplay.c @ 1726:a8d8f419b459

[xemacs-hg @ 2003-09-30 15:26:34 by james] Add type information to xfree to avoid alias creation.
author james
date Tue, 30 Sep 2003 15:27:01 +0000
parents 943eaba38521
children 04bc9d2f42c7
line wrap: on
line diff
--- a/src/ntplay.c	Mon Sep 29 21:53:04 2003 +0000
+++ b/src/ntplay.c	Tue Sep 30 15:27:01 2003 +0000
@@ -68,7 +68,7 @@
       if (retry_read (ofd, data, size) != size)
 	{
 	  retry_close (ofd);
-	  xfree (data);
+	  xfree (data, UChar_Binary *);
 	  return;
 	}
       retry_close (ofd);
@@ -90,7 +90,7 @@
   if (sound_data)
     {
       qxePlaySound (NULL, NULL, flags);
-      xfree (sound_data);
+      xfree (sound_data, UChar_Binary *);
       sound_data = 0;
     }