diff options
Diffstat (limited to 'src/cmd/tpic/misc.c')
| -rw-r--r-- | src/cmd/tpic/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/tpic/misc.c b/src/cmd/tpic/misc.c index 72e83303..1dbdffcc 100644 --- a/src/cmd/tpic/misc.c +++ b/src/cmd/tpic/misc.c @@ -369,7 +369,7 @@ getfirst(int n, int t) /* find n-th occurrence of type t */ double getblkvar(obj *p, char *s) /* find variable s2 in block p */ { - YYSTYPE y, getblk(); + YYSTYPE y; y = getblk(p, s); return y.f; @@ -378,7 +378,7 @@ getblkvar(obj *p, char *s) /* find variable s2 in block p */ obj* getblock(obj *p, char *s) /* find variable s in block p */ { - YYSTYPE y, getblk(); + YYSTYPE y; y = getblk(p, s); return y.o; |
