base64-test: Remove posibility of returning restrcted exit codes

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

View File

@ -270,7 +270,10 @@ int main(int argc, char ** argv)
}
}
return error_count;
if (error_count)
printf("Error Count: %d.\n", error_count);
return !!error_count;
}
// LCOV_EXCL_STOP