array size mismatches in --qf should send error to stderr
authorewt <devnull@localhost>
Wed, 12 Feb 1997 16:54:49 +0000 (16:54 +0000)
committerewt <devnull@localhost>
Wed, 12 Feb 1997 16:54:49 +0000 (16:54 +0000)
CVS patchset: 1409
CVS date: 1997/02/12 16:54:49

query.c

diff --git a/query.c b/query.c
index 33a45a5..9d96d69 100644 (file)
--- a/query.c
+++ b/query.c
@@ -103,7 +103,7 @@ static int queryPartial(Header h, char ** chptrptr, int * cntptr,
            } else if (count != -1 && !*cntptr && !emptyItem){ 
                *cntptr = count;
            } else if (count != -1 && *cntptr && count != *cntptr) {
-               printf("(parallel array size mismatch)");
+               fprintf(stderr, "(parallel array size mismatch)");
                return 1;
            }
            break;