summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1997-07-02 12:53:50 +0000
committerKenichi Handa <handa@m17n.org>1997-07-02 12:53:50 +0000
commit48e51a67ec69fb6849fd140fdb5ec251f4e38b41 (patch)
tree119865892054133ffffd180a822aa8ed520e8bcb /src
parent91c05e049fedce3fac14ba7b472d637777d62285 (diff)
downloademacs-48e51a67ec69fb6849fd140fdb5ec251f4e38b41.tar.gz
(selection_data_to_lisp_data): Call free instead of
xfree.
Diffstat (limited to 'src')
-rw-r--r--src/xselect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xselect.c b/src/xselect.c
index 2b5cec02655..81896816b1a 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -1499,7 +1499,7 @@ selection_data_to_lisp_data (display, data, size, type, format)
buf = (unsigned char *) xmalloc (bufsize);
size = decode_coding (&coding, data, buf, size, bufsize, &dummy);
str = make_string ((char *) buf, size);
- xfree (buf);
+ free (buf);
}
return str;
}