diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-15 11:54:44 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-15 11:54:44 +0100 |
commit | be090bed15aefa6d5893288ae5bed81ea12f9724 (patch) | |
tree | 91786da3aad6001cc68bad4d62d48cba53602935 | |
parent | 27e2e181eacfde4fc455c707c7993e85756fb3f1 (diff) |
remove unused variables
-rw-r--r-- | src/PostscriptDSC.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/PostscriptDSC.cxx b/src/PostscriptDSC.cxx index 99354e7..852edfb 100644 --- a/src/PostscriptDSC.cxx +++ b/src/PostscriptDSC.cxx @@ -35,8 +35,7 @@ PostscriptDSC::parse(int fd) { FILE *fp; char linebuf[1024]; int x, y, w, h; - int p1 = 0, ps; - int i = 0; + int p1 = 0; int bb_read = 0; int max_pages = 128; |