aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/tpic
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2012-10-21 12:04:56 -0400
committerRuss Cox <rsc@swtch.com>2012-10-21 12:04:56 -0400
commitc5bfba483f4002c539cbeb4087827524dba8d0f8 (patch)
treea054fb1030f97f36308240d974057449acebcac3 /src/cmd/tpic
parentb0ae8a46a0e40773d306906dd0fd9b33832e7086 (diff)
downloadplan9port-c5bfba483f4002c539cbeb4087827524dba8d0f8.tar.gz
plan9port-c5bfba483f4002c539cbeb4087827524dba8d0f8.tar.bz2
plan9port-c5bfba483f4002c539cbeb4087827524dba8d0f8.zip
silence more warnings
R=rsc http://codereview.appspot.com/6744056
Diffstat (limited to 'src/cmd/tpic')
-rw-r--r--src/cmd/tpic/textgen.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/cmd/tpic/textgen.c b/src/cmd/tpic/textgen.c
index e9ba8034..82753b74 100644
--- a/src/cmd/tpic/textgen.c
+++ b/src/cmd/tpic/textgen.c
@@ -8,8 +8,6 @@ textgen(void)
int i, sub, nstr, at, with, hset;
double xwith, ywith, h, w, x0, y0, x1, y1;
obj *p, *ppos;
- static double prevh = 0;
- static double prevw = 0;
Attr *ap;
at = with = nstr = hset = 0;
@@ -90,8 +88,6 @@ textgen(void)
cury = y1;
else
cury = y0;
- prevh = h;
- prevw = w;
return(p);
}