aboutsummaryrefslogtreecommitdiffstats
path: root/src/yawa.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/yawa.h')
-rw-r--r--src/yawa.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/yawa.h b/src/yawa.h
index ac4cd4d..e9cc2c8 100644
--- a/src/yawa.h
+++ b/src/yawa.h
@@ -7,7 +7,7 @@
typedef struct
{
- int r, g, b, a;
+ signed r, g, b, a;
} Color;
typedef enum
@@ -21,13 +21,13 @@ signed
set_root_atoms(Pixmap pixmap);
signed
-load_image(ImageMode mode, const char *arg, int rootW, int rootH,
- int alpha, Imlib_Image rootimg);
+load_image(ImageMode mode, const char *arg, signed rootW, signed rootH,
+ signed alpha, Imlib_Image rootimg);
/// Argument parsing
-static int num_add_colors;
+static signed num_add_colors;
struct arguments {
char *image;
char *write_file;