diff options
author | Russ Cox <rsc@swtch.com> | 2012-10-21 12:04:56 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2012-10-21 12:04:56 -0400 |
commit | c5bfba483f4002c539cbeb4087827524dba8d0f8 (patch) | |
tree | a054fb1030f97f36308240d974057449acebcac3 /src/cmd/tpic | |
parent | b0ae8a46a0e40773d306906dd0fd9b33832e7086 (diff) | |
download | plan9port-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.c | 4 |
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); } |