Browse Source

Fix indentation of srcpos_verror()

Somehow this function ended up with a 7 space indent, instead of the usual
8 space (1 tab) indent.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
David Gibson 11 years ago
parent
commit
e19d3b1d6d
  1. 10
      srcpos.c

10
srcpos.c

@ -293,13 +293,13 @@ srcpos_string(struct srcpos *pos)
void void
srcpos_verror(struct srcpos *pos, const char *fmt, va_list va) srcpos_verror(struct srcpos *pos, const char *fmt, va_list va)
{ {
const char *srcstr; const char *srcstr;


srcstr = srcpos_string(pos); srcstr = srcpos_string(pos);


fprintf(stderr, "Error: %s ", srcstr); fprintf(stderr, "Error: %s ", srcstr);
vfprintf(stderr, fmt, va); vfprintf(stderr, fmt, va);
fprintf(stderr, "\n"); fprintf(stderr, "\n");
} }


void void

Loading…
Cancel
Save