diff options
| author | Paul Eggert | 2011-04-10 09:44:27 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-10 09:44:27 -0700 |
| commit | b2ded58d7e0eb75f00071036d1c07bbd55313b60 (patch) | |
| tree | 5546bb6d7214033a83d13ce87a15f65595f6ae74 /src/fns.c | |
| parent | 37f1c9309eb0e6b3bc3dda1ffa7f99410c22355d (diff) | |
| parent | 12020a9e6dcfc2213e8bbb0fec259c1ed1202f30 (diff) | |
| download | emacs-b2ded58d7e0eb75f00071036d1c07bbd55313b60.tar.gz emacs-b2ded58d7e0eb75f00071036d1c07bbd55313b60.zip | |
Fix more problems found by GCC 4.6.0's static checks.
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -1076,7 +1076,7 @@ an error is signaled. */) | |||
| 1076 | EMACS_INT converted = str_to_unibyte (SDATA (string), str, chars, 0); | 1076 | EMACS_INT converted = str_to_unibyte (SDATA (string), str, chars, 0); |
| 1077 | 1077 | ||
| 1078 | if (converted < chars) | 1078 | if (converted < chars) |
| 1079 | error ("Can't convert the %dth character to unibyte", converted); | 1079 | error ("Can't convert the %"pEd"th character to unibyte", converted); |
| 1080 | string = make_unibyte_string ((char *) str, chars); | 1080 | string = make_unibyte_string ((char *) str, chars); |
| 1081 | xfree (str); | 1081 | xfree (str); |
| 1082 | } | 1082 | } |