summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-07-02 17:21:26 +0200
committerLennart Poettering <lennart@poettering.net>2008-07-02 17:21:26 +0200
commitbf63be43dc189381c64c66b73522dbf515793aaa (patch)
treeed1edae39dc8fc17c2bdf601920291d8b989da74
parent8b161f3fee2207bf423d88677ef42faaa7da7a97 (diff)
fix definition of SkBool, so that assigning 1 to an SkBool:1 bitfield doesn't cause a compiler warning
-rw-r--r--atasmart.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/atasmart.h b/atasmart.h
index 91850e3..b5e6793 100644
--- a/atasmart.h
+++ b/atasmart.h
@@ -29,7 +29,7 @@
extern "C" {
#endif
-typedef int SkBool;
+typedef unsigned SkBool;
#ifndef FALSE
#define FALSE (0)