diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2013-04-06 21:49:48 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2013-04-06 21:49:48 +0000 |
commit | a65e1203bdb94ec2873e3ba7dad910096eaecb25 (patch) | |
tree | 59783e9af7b4d991c6b6f03d01708361237224ce /analyzer | |
parent | b182d5152851ad7aeeb31e1658dda0b2b46101de (diff) | |
download | netpbm-mirror-a65e1203bdb94ec2873e3ba7dad910096eaecb25.tar.gz netpbm-mirror-a65e1203bdb94ec2873e3ba7dad910096eaecb25.tar.xz netpbm-mirror-a65e1203bdb94ec2873e3ba7dad910096eaecb25.zip |
Fix bug from revision 1771: says types are different when they aren't
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1871 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'analyzer')
-rw-r--r-- | analyzer/pnmpsnr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/analyzer/pnmpsnr.c b/analyzer/pnmpsnr.c index ce2708b5..b04316cf 100644 --- a/analyzer/pnmpsnr.c +++ b/analyzer/pnmpsnr.c @@ -55,14 +55,14 @@ validateInput(struct pam const pam1, "maxval of one of them.", (unsigned int) pam1.maxval, (unsigned int) pam2.maxval); - if (streq(pam1.tuple_type, pam2.tuple_type)) + if (!streq(pam1.tuple_type, pam2.tuple_type)) pm_error("images are not of the same type. The tuple types are " "'%s' and '%s', respectively.", pam1.tuple_type, pam2.tuple_type); - if (streq(pam1.tuple_type, PAM_PBM_TUPLETYPE) && - streq(pam1.tuple_type, PAM_PGM_TUPLETYPE) && - streq(pam1.tuple_type, PAM_PPM_TUPLETYPE)) + if (!streq(pam1.tuple_type, PAM_PBM_TUPLETYPE) && + !streq(pam1.tuple_type, PAM_PGM_TUPLETYPE) && + !streq(pam1.tuple_type, PAM_PPM_TUPLETYPE)) pm_error("Images are not of a PNM type. Tuple type is '%s'", pam1.tuple_type); } |