diff options
author | Marcus Brinkmann <[email protected]> | 2018-12-04 15:42:47 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2018-12-05 10:35:33 +0000 |
commit | 34d6637a34b139fbfafa6c15eaf2fc88158a1c3c (patch) | |
tree | 5a2d362f11ee7e1b735a6ab4a1bcd2189dc8a2f6 /src | |
parent | core: New functions gpgrt_fprintf_sf anf gpgrt_fprintf_sf_unlocked. (diff) | |
download | libgpg-error-34d6637a34b139fbfafa6c15eaf2fc88158a1c3c.tar.gz libgpg-error-34d6637a34b139fbfafa6c15eaf2fc88158a1c3c.zip |
Fix gpgrt_ftruncate declaration.
Diffstat (limited to 'src')
-rw-r--r-- | src/gpg-error.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpg-error.h.in b/src/gpg-error.h.in index cb32c48..b7aa5f6 100644 --- a/src/gpg-error.h.in +++ b/src/gpg-error.h.in @@ -717,7 +717,7 @@ int _gpgrt_pending_unlocked (gpgrt_stream_t stream); /* (private) */ 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, gpgrt_off_t offset, int whence); -int gpgrt_ftruncate (estream_t stream, gpgrt_off_t length); +int gpgrt_ftruncate (gpgrt_stream_t stream, gpgrt_off_t length); long int gpgrt_ftell (gpgrt_stream_t stream); gpgrt_off_t gpgrt_ftello (gpgrt_stream_t stream); void gpgrt_rewind (gpgrt_stream_t stream); |