From a13b96e2453c318a76aff348e848ecbff73b830d Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 27 Jan 2008 01:56:17 +0000 Subject: Add const git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@571 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- lib/libpnm2.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lib/libpnm2.c') diff --git a/lib/libpnm2.c b/lib/libpnm2.c index fdfe0dc0..01ffa389 100644 --- a/lib/libpnm2.c +++ b/lib/libpnm2.c @@ -54,7 +54,7 @@ pnm_writepnminit(FILE * const fileP, static void writepgmrow(FILE * const fileP, - xel * const xelrow, + const xel * const xelrow, unsigned int const cols, xelval const maxval, int const format, @@ -89,7 +89,7 @@ writepgmrow(FILE * const fileP, static void writepbmrow(FILE * const fileP, - xel * const xelrow, + const xel * const xelrow, unsigned int const cols, bool const plainFormat) { @@ -121,12 +121,12 @@ writepbmrow(FILE * const fileP, void -pnm_writepnmrow(FILE * const fileP, - xel * const xelrow, - int const cols, - xelval const maxval, - int const format, - int const forceplain) { +pnm_writepnmrow(FILE * const fileP, + const xel * const xelrow, + int const cols, + xelval const maxval, + int const format, + int const forceplain) { bool const plainFormat = forceplain || pm_plain_output; -- cgit 1.4.1