summaryrefslogtreecommitdiff
path: root/tests/i18n.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/i18n.c')
-rw-r--r--tests/i18n.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/i18n.c b/tests/i18n.c
index 777cbf6..c9d3453 100644
--- a/tests/i18n.c
+++ b/tests/i18n.c
@@ -7,7 +7,7 @@
int
main(void) {
- int rc = -1;
+ int rc = EXIT_FAILURE;
if (getenv("DUMP_TRANSLATABLE_STRINGS")) {
if (dump_translatable_strings(MSGS)) {
@@ -16,7 +16,7 @@ main(void) {
}
}
- rc = 0;
+ rc = EXIT_SUCCESS;
out:
- return !!rc;
+ return rc;
}