From 264e112fad39d2a78d3358f7c9cc8069f9e7a61b Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 6 Feb 2003 23:54:30 +0000 Subject: [PATCH] gcc 3.2 --- panda/src/pnmimagetypes/pnmFileTypeTIFF.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/pnmimagetypes/pnmFileTypeTIFF.cxx b/panda/src/pnmimagetypes/pnmFileTypeTIFF.cxx index 4d98d66b25..3bbff19ecc 100644 --- a/panda/src/pnmimagetypes/pnmFileTypeTIFF.cxx +++ b/panda/src/pnmimagetypes/pnmFileTypeTIFF.cxx @@ -116,7 +116,7 @@ static toff_t istream_seek(thandle_t fd, off_t off, int whence) { istream *in = (istream *)fd; - ios::seek_dir dir; + ios_seekdir dir; switch (whence) { case SEEK_SET: dir = ios::beg; @@ -142,7 +142,7 @@ static toff_t ostream_seek(thandle_t fd, off_t off, int whence) { ostream *out = (ostream *)fd; - ios::seek_dir dir; + ios_seekdir dir; switch (whence) { case SEEK_SET: dir = ios::beg;