summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2014-09-12 10:33:16 +0200
committerWerner Koch <wk@gnupg.org>2014-09-12 10:33:16 +0200
commite1882ee8c541020ec590bf096508ca5b6d2ab944 (patch)
tree42f633b412a694f4808f69e793c54528d194dbaa
parent7de798e2b0f4c4d18b1690e1ab370522faa2de9d (diff)
downloadlibgpg-error-e1882ee8c541020ec590bf096508ca5b6d2ab944.tar.gz
Fix a prototype
* src/gpgrt-int.h: s/off_t/gpgrt_off_t/.
-rw-r--r--src/gpgrt-int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpgrt-int.h b/src/gpgrt-int.h
index 0e6f69c..f97166f 100644
--- a/src/gpgrt-int.h
+++ b/src/gpgrt-int.h
@@ -105,9 +105,9 @@ void _gpgrt_clearerr_unlocked (gpgrt_stream_t stream);
int _gpgrt_fflush (gpgrt_stream_t stream);
int _gpgrt_fseek (gpgrt_stream_t stream, long int offset, int whence);
-int _gpgrt_fseeko (gpgrt_stream_t stream, off_t offset, int whence);
+int _gpgrt_fseeko (gpgrt_stream_t stream, gpgrt_off_t offset, int whence);
long int _gpgrt_ftell (gpgrt_stream_t stream);
-off_t _gpgrt_ftello (gpgrt_stream_t stream);
+gpgrt_off_t _gpgrt_ftello (gpgrt_stream_t stream);
void _gpgrt_rewind (gpgrt_stream_t stream);
int _gpgrt_fgetc (gpgrt_stream_t stream);