aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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)
1499 buf = (unsigned char *) xmalloc (bufsize); 1499 buf = (unsigned char *) xmalloc (bufsize);
1500 size = decode_coding (&coding, data, buf, size, bufsize, &dummy); 1500 size = decode_coding (&coding, data, buf, size, bufsize, &dummy);
1501 str = make_string ((char *) buf, size); 1501 str = make_string ((char *) buf, size);
1502 xfree (buf); 1502 free (buf);
1503 } 1503 }
1504 return str; 1504 return str;
1505 } 1505 }