aboutsummaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands.c b/commands.c
index 8741a26..762fc05 100644
--- a/commands.c
+++ b/commands.c
@@ -36,7 +36,7 @@ bool cg_quit(arg_t status)
unsigned int i;
if (options->to_stdout && markcnt > 0) {
- for (i = 0; i < filecnt; i++) {
+ for (i = 0; i < (unsigned int)filecnt; i++) {
if (files[i].flags & FF_MARK)
printf("%s%c", files[i].name, options->using_null ? '\0' : '\n');
}
@@ -319,7 +319,7 @@ bool ci_drag(arg_t drag_mode)
float px, py;
XEvent e;
- if ((int)(img.w * img.zoom) <= win.w && (int)(img.h * img.zoom) <= win.h)
+ if ((int)(img.w * img.zoom) <= (int)win.w && (int)(img.h * img.zoom) <= (int)win.h)
return false;
win_set_cursor(&win, drag_mode == DRAG_ABSOLUTE ? CURSOR_DRAG_ABSOLUTE : CURSOR_DRAG_RELATIVE);