From e19d3b1d6da33b78dec83a9064a1e9a570657dd6 Mon Sep 17 00:00:00 2001 From: David Gibson Date: Wed, 1 Jan 2014 23:17:39 +1100 Subject: 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 --- srcpos.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'srcpos.c') diff --git a/srcpos.c b/srcpos.c index 71a73b8..48059aa 100644 --- a/srcpos.c +++ b/srcpos.c @@ -293,13 +293,13 @@ srcpos_string(struct srcpos *pos) void 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); - vfprintf(stderr, fmt, va); - fprintf(stderr, "\n"); + fprintf(stderr, "Error: %s ", srcstr); + vfprintf(stderr, fmt, va); + fprintf(stderr, "\n"); } void -- cgit v1.2.1