Browse Source

Remove trailing space in stack printing

aarch64^2
Andrew Alderwick 4 years ago
parent
commit
2c47425c41
  1. 6
      src/devices/system.c

6
src/devices/system.c

@ -26,11 +26,11 @@ static void
system_print(Stack *s, char *name)
{
Uint8 i;
fprintf(stderr, "<%s> ", name);
fprintf(stderr, "<%s>", name);
for(i = 0; i < s->ptr; i++)
fprintf(stderr, "%02x ", s->dat[i]);
fprintf(stderr, " %02x", s->dat[i]);
if(!i)
fprintf(stderr, "empty");
fprintf(stderr, " empty");
fprintf(stderr, "\n");
}

Loading…
Cancel
Save