Commit 0a0bc729 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #49 from mattn/exit_code

return 0 if code is generated.
parents 7edd7762 2c64c712
......@@ -139,5 +139,5 @@ main(int argc, char **argv)
cleanup(&args);
return n;
return n > 0 ? 0 : 1;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment