This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via c104daa309d30c1ffd78acb93d1f451f5224d59e (commit) from d0bede0f6465dc36e6344c977801bbe193df3f06 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/c104daa309d30c1ffd78acb93d1f451f5224d...
commit c104daa309d30c1ffd78acb93d1f451f5224d59e Author: Cyril Hrubis metan@ucw.cz Date: Wed Dec 17 19:11:55 2014 +0100
loaders: Fix typos in stubs.
Signed-off-by: Cyril Hrubis metan@ucw.cz
diff --git a/libs/loaders/GP_GIF.c b/libs/loaders/GP_GIF.c index 1d6a5fff..097eb322 100644 --- a/libs/loaders/GP_GIF.c +++ b/libs/loaders/GP_GIF.c @@ -384,8 +384,8 @@ int GP_MatchGIF(const void GP_UNUSED(*buf)) return -1; }
-GP_Context *GP_ReadGIF(GP_IO GP_UNUSED(*io), - GP_ProgressCallback GP_UNUSED(*callback)) +GP_Context *GP_ReadGIFEx(GP_IO GP_UNUSED(*io), + GP_ProgressCallback GP_UNUSED(*callback)) { errno = ENOSYS; return NULL; diff --git a/libs/loaders/GP_JPG.c b/libs/loaders/GP_JPG.c index a0845b3c..386370fd 100644 --- a/libs/loaders/GP_JPG.c +++ b/libs/loaders/GP_JPG.c @@ -538,7 +538,7 @@ int GP_WriteJPG(const GP_Context *src, GP_IO *io,
#else
-int GP_ReadJPGEx(GP_IO GP_UNUSED(*io), GP_Context GP_UNUSED(**img,) +int GP_ReadJPGEx(GP_IO GP_UNUSED(*io), GP_Context GP_UNUSED(**img), GP_DataStorage GP_UNUSED(*storage), GP_ProgressCallback GP_UNUSED(*callback)) { @@ -546,8 +546,8 @@ int GP_ReadJPGEx(GP_IO GP_UNUSED(*io), GP_Context GP_UNUSED(**img,) return 1; }
-int GP_WriteJPG(const GP_Context *src, GP_IO *io, - GP_ProgressCallback *callback) +int GP_WriteJPG(const GP_Context GP_UNUSED(*src), GP_IO GP_UNUSED(*io), + GP_ProgressCallback GP_UNUSED(*callback)) { errno = ENOSYS; return 1; diff --git a/libs/loaders/GP_TIFF.c b/libs/loaders/GP_TIFF.c index e7dea8dc..806923e9 100644 --- a/libs/loaders/GP_TIFF.c +++ b/libs/loaders/GP_TIFF.c @@ -801,7 +801,7 @@ int GP_WriteTIFF(const GP_Context *src, GP_IO *io,
#else
-int GP_ReadTIFFEx(GP_IO GP_UNUSED(*io), GP_Context GP_UNUSED(**img,) +int GP_ReadTIFFEx(GP_IO GP_UNUSED(*io), GP_Context GP_UNUSED(**img), GP_DataStorage GP_UNUSED(*storage), GP_ProgressCallback GP_UNUSED(*callback)) {
-----------------------------------------------------------------------
Summary of changes: libs/loaders/GP_GIF.c | 4 ++-- libs/loaders/GP_JPG.c | 6 +++--- libs/loaders/GP_TIFF.c | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.