]> git.wh0rd.org Git - nano.git/commitdiff
Avoiding three compiler warnings with --enable-debug.
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 21 Apr 2014 13:07:18 +0000 (13:07 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Mon, 21 Apr 2014 13:07:18 +0000 (13:07 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4794 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/rcfile.c
src/winio.c

index f25fefb778ceb59ce60f7987e6f49552a08b7369..8b10e93ccfcb6364a56bf17b5823d63742a45091 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,8 @@
        better, and allow things to be rebound in the linter menu.
        * src/nano.h: Delete a large bunch of unused defines.
        * src/nano.h, src/proto.h: Delete some more unused stuff.
+       * src/rcfile.c (parse_binding), src/winio.c (get_mouseinput):
+       Avoid three compiler warnings with --enable-debug.
 
 2014-04-16  Benno Schulenberg  <bensberg@justemail.net>
        * src/winio.c (get_mouseinput): Properly find also the zeroeth
index 9742574c5b256e8225367b2b22b46f2b48fbcdb5..8c1c2b8244862ebeda3547f959291abab3929d16 100644 (file)
@@ -539,8 +539,8 @@ void parse_binding(char *ptr, bool dobind)
 
 #ifdef DEBUG
     if (dobind)
-       fprintf(stderr, "newsc now address %d, func assigned = %d, menu = %x\n",
-           &newsc, newsc->scfunc, menu);
+       fprintf(stderr, "newsc address is now %ld, assigned func = %ld, menu = %x\n",
+           (long)&newsc, (long)newsc->scfunc, menu);
    else
        fprintf(stderr, "unbinding \"%s\" from menu %x\n", keycopy, menu);
 #endif
index b334fc83d3dc2b0ca556362b98fa4e6008f4ce2c..dcfaeff030c3ae9d02f9d653dbc8806b83438773 100644 (file)
@@ -1715,7 +1715,7 @@ int get_mouseinput(int *mouse_x, int *mouse_y, bool allow_shortcuts)
                j -= 1;
            }
 #ifdef DEBUG
-           fprintf(stderr, "Stopped on func %ld present in menus %x\n", f->scfunc, f->menus);
+           fprintf(stderr, "Stopped on func %ld present in menus %x\n", (long)f->scfunc, f->menus);
 #endif
 
            /* And put the corresponding key into the keyboard buffer. */