Browse Source

Should use libtap's exit_status() for return from main.

Rusty Russell 18 years ago
parent
commit
6cddf7bb99
1 changed files with 1 additions and 1 deletions
  1. 1 1
      check_type/test/run.c

+ 1 - 1
check_type/test/run.c

@@ -18,5 +18,5 @@ int main(int argc, char *argv[])
 	ok1(check_types_match(x++, y++) == 0);
 	ok(x == 0 && y == 0, "check_types_match does not evaluate expressions");
 
-	return 0;
+	return exit_status();
 }