Commit 60a6ec1c authored by Russ Cox's avatar Russ Cox

ld: typo

R=ken2
CC=golang-dev
https://golang.org/cl/194073
parent 7263bfc7
...@@ -111,7 +111,7 @@ ldpkg(Biobuf *f, char *pkg, int64 len, char *filename) ...@@ -111,7 +111,7 @@ ldpkg(Biobuf *f, char *pkg, int64 len, char *filename)
return; return;
} }
p0 += 8; p0 += 8;
while(p0 < p1 && *p0 == ' ' || *p0 == '\t' || *p0 == '\n') while(p0 < p1 && (*p0 == ' ' || *p0 == '\t' || *p0 == '\n'))
p0++; p0++;
name = p0; name = p0;
while(p0 < p1 && *p0 != ' ' && *p0 != '\t' && *p0 != '\n') while(p0 < p1 && *p0 != ' ' && *p0 != '\t' && *p0 != '\n')
......
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