From a23636d95ea1cdb40f03cd15b7db49f3a9d7cf42 Mon Sep 17 00:00:00 2001 From: Bert Date: Sat, 3 Sep 2011 23:07:14 +0200 Subject: Fixed pointer-to-int-cast warnings on x86_64 --- commands.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commands.c') diff --git a/commands.c b/commands.c index 20ffd42..acf41d9 100644 --- a/commands.c +++ b/commands.c @@ -109,7 +109,7 @@ int it_remove_image(arg_t a) { } int i_navigate(arg_t a) { - int n = (int) a; + long n = (long) a; if (mode == MODE_IMAGE) { n += fileidx; @@ -154,7 +154,7 @@ int it_last(arg_t a) { int i_navigate_frame(arg_t a) { if (mode == MODE_IMAGE && !img.multi.animate) - return img_frame_navigate(&img, (int) a); + return img_frame_navigate(&img, (long) a); else return 0; } @@ -259,7 +259,7 @@ int i_drag(arg_t a) { } int i_zoom(arg_t a) { - int scale = (int) a; + long scale = (long) a; if (mode != MODE_IMAGE) return 0; -- cgit v1.2.3-54-g00ecf