Fix Windows adb build by avoiding "bool"

Change-Id: I9ca59e400c199d497a1a18d5e64c2cafe628097b
diff --git a/commandline.c b/commandline.c
index af21e38..2df3f09 100644
--- a/commandline.c
+++ b/commandline.c
@@ -675,7 +675,7 @@
     }
 }
 
-static bool should_escape(const char c)
+static int should_escape(const char c)
 {
     return (c == ' ' || c == '\'' || c == '"' || c == '\\' || c == '(' || c == ')');
 }