diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2011-08-15 21:34:00 +0200 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2011-08-15 21:34:00 +0200 |
commit | c5704812b8de2f2f518b0389af533b519c56799b (patch) | |
tree | 37392d4788779cb4fb4d6f04d4f8c9f7e466183d /util.c | |
parent | 2758e22f8d24007061bd612d30b2a1156a9a2ca2 (diff) | |
download | ccache-c5704812b8de2f2f518b0389af533b519c56799b.tar.gz |
Use true/false for boolean values
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1188,12 +1188,12 @@ bool is_full_path(const char *path) { if (strchr(path, '/')) - return 1; + return true; #ifdef _WIN32 if (strchr(path, '\\')) - return 1; + return true; #endif - return 0; + return false; } /* |