Skip to content

Commit

Permalink
Replace everything to just 1 long string of chars
Browse files Browse the repository at this point in the history
  • Loading branch information
vmcj committed Jan 24, 2022
1 parent 7d63349 commit d3b78e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/lib.error.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ void vlogmsg(int msglevel, const char *mesg, va_list ap)
for(str_tmp_pos=0; str_tmp_pos<strlen(progname_escaped); str_tmp_pos++) {
ctmp = progname_escaped[str_tmp_pos];
if ( ctmp!='%' ) {
progname_unformatted[esc_tmp_pos++] = ctmp;
progname_unformatted[esc_tmp_pos++] = 'c';
}
}
progname_unformatted[esc_tmp_pos] = 0;
Expand Down

0 comments on commit d3b78e3

Please sign in to comment.