aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/draw
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2020-01-12 15:05:40 -0500
committerRuss Cox <rsc@swtch.com>2020-01-12 15:07:42 -0500
commitfafa622a5bdf71adfbb4334541c3b65f29c89ca9 (patch)
tree189d86fb978b151ddf2f303f9c4efab196d79f17 /src/cmd/draw
parentfa325e9b42b0bdfb48857d1958d9fb7ceac55151 (diff)
downloadplan9port-fafa622a5bdf71adfbb4334541c3b65f29c89ca9.tar.gz
plan9port-fafa622a5bdf71adfbb4334541c3b65f29c89ca9.tar.bz2
plan9port-fafa622a5bdf71adfbb4334541c3b65f29c89ca9.zip
all: fix or silence various gcc warnings
As usual, gcc finds some real problems but also reports a ton of noise. Fix the problems and quiet the noise.
Diffstat (limited to 'src/cmd/draw')
-rw-r--r--src/cmd/draw/tweak.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/draw/tweak.c b/src/cmd/draw/tweak.c
index 0a71e2dd..29e2b3d7 100644
--- a/src/cmd/draw/tweak.c
+++ b/src/cmd/draw/tweak.c
@@ -1142,7 +1142,7 @@ textedit(Thing *t, char *tag)
fc = f->info;
for(i=0; i<=w && i<=f->n; i++)
nfc[i] = fc[i];
- if(w+1 < i)
+ if(i < w+1)
memset(nfc+i, 0, ((w+1)-i)*sizeof(Fontchar));
x = fc[f->n].x;
for(; i<=w; i++)