diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/doprnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doprnt.c b/src/doprnt.c index 7eaa2717056..13e13ef6200 100644 --- a/src/doprnt.c +++ b/src/doprnt.c | |||
| @@ -293,7 +293,7 @@ doprnt1 (lispstrings, buffer, bufsize, format, format_end, nargs, args) | |||
| 293 | case 'c': | 293 | case 'c': |
| 294 | if (cnt == nargs) | 294 | if (cnt == nargs) |
| 295 | error ("not enough arguments for format string"); | 295 | error ("not enough arguments for format string"); |
| 296 | tem = CHAR_STRING ((EMACS_INT) args[cnt], charbuf, string); | 296 | tem = CHAR_STRING ((int) (EMACS_INT) args[cnt], charbuf, string); |
| 297 | cnt++; | 297 | cnt++; |
| 298 | string[tem] = 0; | 298 | string[tem] = 0; |
| 299 | width = strwidth (string, tem); | 299 | width = strwidth (string, tem); |