diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2015-06-28 02:11:33 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2015-06-28 02:11:33 +0000 |
commit | a6d9e984923b7a7a24f2560eeb12147868564dc6 (patch) | |
tree | 9d25e324effd612bb351a8e047a1a58d466d86d4 /converter/other | |
parent | 9d9d6bdb744fb65ea153a723fd2e2768e193ae36 (diff) | |
download | netpbm-mirror-a6d9e984923b7a7a24f2560eeb12147868564dc6.tar.gz netpbm-mirror-a6d9e984923b7a7a24f2560eeb12147868564dc6.tar.xz netpbm-mirror-a6d9e984923b7a7a24f2560eeb12147868564dc6.zip |
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2568 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other')
-rw-r--r-- | converter/other/pngtxt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/other/pngtxt.c b/converter/other/pngtxt.c index 853edf0a..bca06d73 100644 --- a/converter/other/pngtxt.c +++ b/converter/other/pngtxt.c @@ -242,7 +242,7 @@ handleArrayAllocation(png_text ** const arrayP, void pngtxt_read(struct pngx * const pngxP, - FILE * const tfp, + FILE * const fileP, bool const ztxt, bool const verbose) { @@ -266,7 +266,7 @@ pngtxt_read(struct pngx * const pngxP, eof = FALSE; while (!eof) { - getFileLine(tfp, &textline, &lineLength); + getFileLine(fileP, &textline, &lineLength); if (textline == NULL) eof = TRUE; else { |