diff options
-rw-r--r-- | tools/pnacl-abicheck/pnacl-abicheck.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pnacl-abicheck/pnacl-abicheck.cpp b/tools/pnacl-abicheck/pnacl-abicheck.cpp index 8fdc545afb..e8fce66acd 100644 --- a/tools/pnacl-abicheck/pnacl-abicheck.cpp +++ b/tools/pnacl-abicheck/pnacl-abicheck.cpp @@ -70,5 +70,5 @@ int main(int argc, char **argv) { "Function " + MI->getName()); } - return ErrorsFound; + return ErrorsFound ? 1 : 0; } |