Commit 36939444 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

main(): Initialized kbinput to get around stupid compiler warning.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@481 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 1 deletion
+2 -1
......@@ -37,6 +37,7 @@ General
main()
- Alternate speller option no longer valid if DISABLE_SPELLER is
active. (Rocco)
- Initialized kbinput to get around stupid compiler warning.
nano_small_msg()
- This function has been removed. All references now call
nano_disabled_msg. (Rocco)
......
......@@ -1751,7 +1751,7 @@ int do_justify(void)
return 1;
#else
int slen = 0; /* length of combined lines on one line. */
int initial_y, kbinput;
int initial_y, kbinput = 0;
filestruct *initial = NULL, *tmpjust = NULL, *cutbak, *tmptop, *tmpbot;
if (empty_line(current->data)) {
......
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