am 46a8ffe8: Fix Windows adb build by avoiding "bool"

* commit '46a8ffe87f3cba070fb18a90e3c5c1f73468f99c':
  Fix Windows adb build by avoiding "bool"
This commit is contained in:
Brian Carlstrom 2014-08-06 12:57:22 +00:00 committed by Android Git Automerger
commit 8a01917da1
1 changed files with 1 additions and 1 deletions

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 == ')');
}