aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-11-11 01:47:18 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-11-11 01:50:46 +0100
commitdd669776d758cd41762d9961d8a7f29fe650525f (patch)
tree5ab39844cdc48bac7886c6f0242c77f40c95735a /src/utils.h
parentaf0d7f5ab90341f353d3632ee25e70e08ded0d69 (diff)
downloadyawa-dd669776d758cd41762d9961d8a7f29fe650525f.tar.xz
replace all int with signed, unsigned int with unsigned
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h
index b21c6d5..86d77ea 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -14,6 +14,6 @@ double
parse_double(char *string, char *arg);
bool
-parse_color(char *arg, Color *c, int a);
+parse_color(char *hex, Color *color, signed alpha);
#endif