Skip to content

Commit

Permalink
Merge pull request #7 from Martin-Zeithaml/printf2
Browse files Browse the repository at this point in the history
printf2 without extra char
  • Loading branch information
JoeNemo authored Mar 20, 2024
2 parents f4d6ce3 + e2a04bd commit fa4f7a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion porting/debugutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void printf2(char *formatString, ...){
cnt = vsnprintf(text,sizeof(text),formatString,argPointer);
va_end(argPointer);
toEBCDIC(text,cnt);
printf("%s\n",text);
printf("%s",text);
}

int putchar2(int c){
Expand Down

0 comments on commit fa4f7a2

Please sign in to comment.