From 75aaab85f92320ceac421182154f91503388e86e Mon Sep 17 00:00:00 2001 From: giraffedata Date: Thu, 10 May 2007 02:49:13 +0000 Subject: Replace STREQ() with streq() git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@295 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- other/pnmcolormap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'other/pnmcolormap.c') diff --git a/other/pnmcolormap.c b/other/pnmcolormap.c index 1be54ef8..4faf5ab6 100644 --- a/other/pnmcolormap.c +++ b/other/pnmcolormap.c @@ -631,7 +631,7 @@ validateCompatibleImage(struct pam * const inpamP, if (inpamP->format != firstPamP->format) pm_error("Image %u format (%d) is not the same as Image 0 (%d)", imageSeq, inpamP->format, firstPamP->format); - if (!STREQ(inpamP->tuple_type, firstPamP->tuple_type)) + if (!streq(inpamP->tuple_type, firstPamP->tuple_type)) pm_error("Image %u tuple type (%s) is not the same as Image 0 (%s)", imageSeq, inpamP->tuple_type, firstPamP->tuple_type); } -- cgit 1.4.1