1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

Fix a dangling else warning from new egcs.

This commit is contained in:
Warner Losh 1999-07-15 03:04:31 +00:00
parent 55b04d88d5
commit c0c4dbc6d4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48818

View File

@ -26,7 +26,7 @@
#ifndef lint
static const char rcsid[] =
"$Id: file.c,v 1.16 1998/04/25 18:10:10 hosokawa Exp $";
"$Id: file.c,v 1.17 1999/06/17 21:07:58 markm Exp $";
#endif /* not lint */
#include <stdio.h>
@ -336,7 +336,7 @@ memblk_tok(int force)
struct allocblk *mem;
int i, j;
if ((i = num_tok()) >= 0)
if ((i = num_tok()) >= 0) {
if ((j = num_tok()) < 0)
error("illegal memory block");
else {
@ -353,6 +353,7 @@ memblk_tok(int force)
}
return (mem);
}
}
if (force)
error("illegal or missing memory block spec");
return (0);