comparison src/hftctl.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 b39c14581166
children ecf1ebac70d8
comparison
equal deleted inserted replaced
1725:7ff8f4d70aec 1726:a8d8f419b459
336 } 336 }
337 337
338 /* write request to terminal */ 338 /* write request to terminal */
339 if (write(fd,p.c,size) == -1) return (-1); 339 if (write(fd,p.c,size) == -1) return (-1);
340 if (p.req != &req) /* free if allocated */ 340 if (p.req != &req) /* free if allocated */
341 xfree (p.c); 341 xfree (p.c, char *);
342 return (0); 342 return (0);
343 } 343 }