From 736bafbb9ca645fc8662d9d05f5a72a2e6185e75 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Tue, 26 Jun 2012 23:09:21 -0400 Subject: Rename seek functions in QUtil --- libqpdf/QUtil.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libqpdf/QUtil.cc') diff --git a/libqpdf/QUtil.cc b/libqpdf/QUtil.cc index 0db61eed..1c7e390f 100644 --- a/libqpdf/QUtil.cc +++ b/libqpdf/QUtil.cc @@ -122,7 +122,7 @@ QUtil::fopen_wrapper(std::string const& description, FILE* f) } int -QUtil::fseek_off_t(FILE* stream, qpdf_offset_t offset, int whence) +QUtil::seek(FILE* stream, qpdf_offset_t offset, int whence) { #if HAVE_FSEEKO return fseeko(stream, (off_t)offset, whence); @@ -138,7 +138,7 @@ QUtil::fseek_off_t(FILE* stream, qpdf_offset_t offset, int whence) } qpdf_offset_t -QUtil::ftell_off_t(FILE* stream) +QUtil::tell(FILE* stream) { #if HAVE_FSEEKO return (qpdf_offset_t)ftello(stream); -- cgit v1.2.3-54-g00ecf