Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a01917d authored by Brian Carlstrom's avatar Brian Carlstrom Committed by Android Git Automerger
Browse files

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

* commit '46a8ffe8':
  Fix Windows adb build by avoiding "bool"
parents 8c9b155e 46a8ffe8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 == ')');
}