Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
959e1b49
Commit
959e1b49
authored
Nov 22, 2007
by
Andreas Schwab
Browse files
(Fsingle_key_description): Add cast when passing EMACS_INT
values to sprintf.
parent
dfa3bb7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/keymap.c
src/keymap.c
+1
-1
No files found.
src/keymap.c
View file @
959e1b49
...
...
@@ -2469,7 +2469,7 @@ around function keys and event symbols. */)
{
char buf[256];
sprintf (buf, "Invalid char code %ld", XINT (key));
sprintf (buf, "Invalid char code %ld",
(long)
XINT (key));
return build_string (buf);
}
else if (charset
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment