diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2013-07-05 16:09:54 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2013-07-05 16:09:54 +0000 |
commit | 9660186446291fe476bd8806764d739722c3b74d (patch) | |
tree | f49cf37ec94aa956863a7f19f6d560b122ffe210 /converter/other/pngx.c | |
parent | 8ffab265ad089b50c8f8ae4c5c19692dba1aad21 (diff) | |
download | netpbm-mirror-9660186446291fe476bd8806764d739722c3b74d.tar.gz netpbm-mirror-9660186446291fe476bd8806764d739722c3b74d.tar.xz netpbm-mirror-9660186446291fe476bd8806764d739722c3b74d.zip |
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1972 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/pngx.c')
-rw-r--r-- | converter/other/pngx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/other/pngx.c b/converter/other/pngx.c index b33f5ab8..8d7b7c70 100644 --- a/converter/other/pngx.c +++ b/converter/other/pngx.c @@ -357,10 +357,10 @@ pngx_setGama(struct pngx * const pngxP, void pngx_setGamma(struct pngx * const pngxP, - float const displayGamma, + float const screenGamma, float const imageGamma) { - png_set_gamma(pngxP->png_ptr, displayGamma, imageGamma); + png_set_gamma(pngxP->png_ptr, screenGamma, imageGamma); } |