Commit 815cba87 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

forgot a cast

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1648 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
...@@ -1012,7 +1012,7 @@ int do_verbatim_input(void) ...@@ -1012,7 +1012,7 @@ int do_verbatim_input(void)
* on, it will be updated properly. */ * on, it will be updated properly. */
SET(DISABLE_CURPOS); SET(DISABLE_CURPOS);
for (i = 0; i < verbatim_len; i++) for (i = 0; i < verbatim_len; i++)
do_char(verbatim_kbinput[i]); do_char((char)verbatim_kbinput[i]);
UNSET(DISABLE_CURPOS); UNSET(DISABLE_CURPOS);
free(verbatim_kbinput); free(verbatim_kbinput);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment