Removed noise from test output

This commit is contained in:
vegowotenks 2025-02-28 23:13:30 +01:00
parent a508e4236e
commit d044cb1567
3 changed files with 11 additions and 9 deletions

View file

@ -117,9 +117,11 @@ int main(int argc, char const *argv[]) {
char c[option->content.length + 1];
memset(c, 0, option->content.length + 1);
memcpy(c, option->content.source, option->content.length);
printf("%-20s: %s\n",
printf(
"%-20s: %s\n",
OptionType_ToString(option->type),
c);
c
);
}
if (Argumentc_PopLongOption(&argumentc, StringView_FromString("long")).type != OPTIONTYPE_NONE) {