Commit 6b055185 authored by Russ Cox's avatar Russ Cox

silence gcc warnings

R=ken
OCL=18348
CL=18348
parent 6524b82f
...@@ -1492,8 +1492,7 @@ lookdot(Node *n, Type *t) ...@@ -1492,8 +1492,7 @@ lookdot(Node *n, Type *t)
void void
walkdot(Node *n) walkdot(Node *n)
{ {
Type *t, *f; Type *t;
int d;
if(n->left == N || n->right == N) if(n->left == N || n->right == N)
return; return;
...@@ -1722,7 +1721,7 @@ ascompatte(int op, Type **nl, Node **nr, int fp) ...@@ -1722,7 +1721,7 @@ ascompatte(int op, Type **nl, Node **nr, int fp)
loop: loop:
if(l != T && isddd(l->type)) { if(l != T && isddd(l->type)) {
if(r != T && isddd(r->type)) { if(r != N && isddd(r->type)) {
goto more; goto more;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment