Skip to content
Snippets Groups Projects
Commit 76952275 authored by Colin Walters's avatar Colin Walters
Browse files

console: Don't delete last character of output text

Not sure why we were doing this...I guess people were working around
it by adding their own spaces?
parent 34a96c03
No related branches found
No related tags found
No related merge requests found
......@@ -241,7 +241,7 @@ glnx_console_progress_text_percent (const char *text,
if (textlen > 0)
{
fwrite (text, 1, textlen - 1, stdout);
fwrite (text, 1, textlen, stdout);
fputc (' ', stdout);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment