diff src/event-Xt.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 210683f31426
children beb716b23f5b
line wrap: on
line diff
--- a/src/event-Xt.c	Mon Sep 29 21:53:04 2003 +0000
+++ b/src/event-Xt.c	Tue Sep 30 15:27:01 2003 +0000
@@ -1406,7 +1406,7 @@
 		      l_item = make_string ((Ibyte *)hurl, strlen (hurl));
 		      l_dndlist = Fcons (l_item, l_dndlist);
 		      data += len + 1;
-		      xfree (hurl);
+		      xfree (hurl, char *);
 		    }
 		  l_type = Qdragdrop_URL;
 		}
@@ -1443,7 +1443,7 @@
 						   strlen (hurl)) );
 		  l_type = Qdragdrop_URL;
 
-		  xfree (hurl);
+		  xfree (hurl, char *);
 		}
 		break;
 	      case DndURL:
@@ -2348,7 +2348,7 @@
 	}
     }
   XtRemoveInput (closure->id);
-  xfree (closure);
+  xfree (closure, struct what_is_ready_closure *);
   filedesc_to_what_closure[fd] = 0;
 }