aboutsummaryrefslogtreecommitdiffstats
path: root/src/yawa.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/yawa.c')
-rw-r--r--src/yawa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/yawa.c b/src/yawa.c
index 4b71d1b..1a669a5 100644
--- a/src/yawa.c
+++ b/src/yawa.c
@@ -183,11 +183,11 @@ set_root_atoms (Pixmap pixmap)
return 1;
}
-int
-parse_color (char *hex, PColor c, int a)
+bool
+parse_color (char *hex, Color *c, int a)
{
if ((strlen(hex) != 7) && (strlen(hex) != 9))
- return 0;
+ return false;
int len;
if (strlen(hex) == 9) {
@@ -226,7 +226,7 @@ parse_color (char *hex, PColor c, int a)
c->a = a;
}
- return 1;
+ return true;
}
int