imap4d: fix missing return in %δ format of Dfmt()
This commit is contained in:
parent
b33eb658e2
commit
ad26dc48a6
1 changed files with 1 additions and 1 deletions
|
@ -124,6 +124,6 @@ Dfmt(Fmt *f)
|
|||
tm->mday, mon[tm->mon], tm->year + 1900, tm->hour, tm->min, tm->sec,
|
||||
sgn, off);
|
||||
if(f->r == L'δ')
|
||||
fmtprint(f, "%s", buf);
|
||||
return fmtstrcpy(f, buf);
|
||||
return fmtprint(f, "%Z", buf);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue