Remove trailing space in stack printing
This commit is contained in:
parent
4ea8cc2819
commit
2c47425c41
|
@ -26,11 +26,11 @@ static void
|
||||||
system_print(Stack *s, char *name)
|
system_print(Stack *s, char *name)
|
||||||
{
|
{
|
||||||
Uint8 i;
|
Uint8 i;
|
||||||
fprintf(stderr, "<%s> ", name);
|
fprintf(stderr, "<%s>", name);
|
||||||
for(i = 0; i < s->ptr; i++)
|
for(i = 0; i < s->ptr; i++)
|
||||||
fprintf(stderr, "%02x ", s->dat[i]);
|
fprintf(stderr, " %02x", s->dat[i]);
|
||||||
if(!i)
|
if(!i)
|
||||||
fprintf(stderr, "empty");
|
fprintf(stderr, " empty");
|
||||||
fprintf(stderr, "\n");
|
fprintf(stderr, "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue