summaryrefslogtreecommitdiff
path: root/t_fill.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2016-02-01 13:48:43 -0800
committerAdam Jackson <ajax@redhat.com>2016-02-08 16:13:12 -0500
commitc717994102c1e190c0131b57915693b951ed81b7 (patch)
tree81308a890449c80cfbc25770e2828dadcb77842d /t_fill.c
parent604e3bbe6d8d96bec284a83c08c5cc5f159a243c (diff)
Start using stdbool.h instead of Xlib or custom bools.
I have a hard time typing anything else at this point. Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 't_fill.c')
-rw-r--r--t_fill.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/t_fill.c b/t_fill.c
index 7e071c0..4d9f639 100644
--- a/t_fill.c
+++ b/t_fill.c
@@ -29,7 +29,7 @@
/* Test that filling of the 1x1 repeating pictures worked as expected. This is
* pretty basic to most of the tests.
*/
-Bool
+bool
fill_test(Display *dpy, picture_info *win, picture_info *src)
{
color4d tested;
@@ -43,8 +43,8 @@ fill_test(Display *dpy, picture_info *win, picture_info *src)
print_fail(name, &src->color, &tested, 0, 0,
eval_diff(&src->format->direct, &src->color, &tested));
free(name);
- return FALSE;
+ return false;
}
- return TRUE;
+ return true;
}