imap4d: fix missing return in %δ format of Dfmt()

front
cinap_lenrek 2020-07-05 22:15:02 +02:00
parent b33eb658e2
commit ad26dc48a6
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}