Commit cbbd0ac7 authored by Derek Buitenhuis's avatar Derek Buitenhuis

base64-test: Remove posibility of returning restrcted exit codes

Signed-off-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
parent 5dfdffeb
......@@ -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
......
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