1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-04 22:50:59 -08:00

* alloc.c (Fmake_string): Fix last change.

This commit is contained in:
Dmitry Antipov 2013-10-07 14:27:48 +04:00
parent 223752d78f
commit cc593f54d9

View file

@ -1990,7 +1990,7 @@ INIT must be an integer that represents a character. */)
else
{
unsigned char str[MAX_MULTIBYTE_LENGTH];
int len = CHAR_STRING (c, str);
ptrdiff_t len = CHAR_STRING (c, str);
EMACS_INT string_len = XINT (length);
unsigned char *p, *beg, *end;