Skip to content

Commit

Permalink
Fix Windows adb build by avoiding "bool"
Browse files Browse the repository at this point in the history
Change-Id: I9ca59e400c199d497a1a18d5e64c2cafe628097b
  • Loading branch information
bdcgoogle committed Aug 6, 2014
1 parent 43d65b6 commit 46a8ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adb/commandline.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 == ')');
}
Expand Down

0 comments on commit 46a8ffe

Please sign in to comment.