mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-14 00:37:41 -04:00
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>
This commit is contained in:
parent
a1e6da8aed
commit
e19d3b1d6d
1 changed files with 5 additions and 5 deletions
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…
Add table
Add a link
Reference in a new issue