Fix Windows adb build by avoiding "bool"

Change-Id: I9ca59e400c199d497a1a18d5e64c2cafe628097b
This commit is contained in:
Brian Carlstrom 2014-08-05 22:51:18 -07:00
parent 43d65b6903
commit 46a8ffe87f

View file

@ -675,7 +675,7 @@ static void status_window(transport_type ttype, const char* serial)
}
}
static bool should_escape(const char c)
static int should_escape(const char c)
{
return (c == ' ' || c == '\'' || c == '"' || c == '\\' || c == '(' || c == ')');
}