mhdr: do not return void values

pull/75/head
Leah Neukirchen 7 years ago
parent 5f45b7d533
commit 1748c0f52a

@ -171,10 +171,14 @@ header(char *file)
if (!msg)
return;
if (!hflag)
return headerall(msg);
if (Mflag)
return headermany(msg);
if (!hflag) {
headerall(msg);
return;
}
if (Mflag) {
headermany(msg);
return;
}
char *h = hflag;
while (*h) {

Loading…
Cancel
Save