diff options
author | nirav <nirav@teisuu.com> | 2018-10-22 23:07:38 +0530 |
---|---|---|
committer | Dandelion <nirav@teisuu.com> | 2018-10-22 23:07:38 +0530 |
commit | 32eb3619140b2682a6c61ab2cd3376a1981861f6 (patch) | |
tree | eff5bca95b9b5d07796c07d4e24abe84e97f4ba6 /src/input.c | |
parent | 62cdffbb4d3e93d6785f3054f7fa81b7cc8b6de7 (diff) | |
download | im-32eb3619140b2682a6c61ab2cd3376a1981861f6.tar.gz im-32eb3619140b2682a6c61ab2cd3376a1981861f6.zip |
Switched to stdbool
Diffstat (limited to 'src/input.c')
-rw-r--r-- | src/input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input.c b/src/input.c index 0b2a6dc..6fb896a 100644 --- a/src/input.c +++ b/src/input.c @@ -1,4 +1,5 @@ #include <gtk-3.0/gtk/gtk.h> +#include <stdbool.h> #include "file.h" #include "image.h" @@ -176,7 +177,7 @@ gboolean resize_done(gpointer data) guint *id = data; *id = 0; fit_image(); - return FALSE; + return false; } void handle_resize() |