1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 04:30:45 -08:00

(run_mac_command, closedir): Use xfree' instead of free'.

This commit is contained in:
Gerd Moellmann 2000-08-05 19:29:39 +00:00
parent 9ae6734f00
commit 38b74a2e47

View file

@ -6729,8 +6729,7 @@ opendir (const char *dirname)
int
closedir (DIR *dp)
{
free (dp);
xfree (dp);
return 0;
}