dct-test: Remove possibility of returning a restricted exit code

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
Derek Buitenhuis 2013-10-22 19:18:36 +01:00
parent cbbd0ac764
commit f80ca1cb00
1 changed files with 4 additions and 1 deletions

View File

@ -580,5 +580,8 @@ int main(int argc, char **argv)
} }
} }
return err; if (err)
printf("Error: %d.\n", err);
return !!err;
} }