diff options
author | chris <chris> | 2006-09-13 19:33:33 +0000 |
---|---|---|
committer | chris <chris> | 2006-09-13 19:33:33 +0000 |
commit | e43e5bc4b1962f940a6eb15ea9c72278867c9913 (patch) | |
tree | 8f292d235f4a7a0ac4d41f31e1f59d3936769e95 | |
parent | e48b0e7359e71c1bf32780634292f8a0ada2d6a6 (diff) |
Consistent diagnostic.
-rw-r--r-- | pnmtilesplit/pnmtilesplit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pnmtilesplit/pnmtilesplit.c b/pnmtilesplit/pnmtilesplit.c index f63093129..8ce2a165b 100644 --- a/pnmtilesplit/pnmtilesplit.c +++ b/pnmtilesplit/pnmtilesplit.c @@ -7,7 +7,7 @@ * */ -static const char rcsid[] = "$Id: pnmtilesplit.c,v 1.2 2006-09-13 19:26:14 chris Exp $"; +static const char rcsid[] = "$Id: pnmtilesplit.c,v 1.3 2006-09-13 19:33:33 chris Exp $"; #include <sys/types.h> @@ -205,7 +205,7 @@ int main(int argc, char *argv[]) { img_pam.width, tile_w); else if (img_pam.width % tile_w) { err("warning: tile width does not divide image width exactly"); - err("last %d columns of image will not be included in any tile", + err("warning: last %d columns of image will not be included in any tile", img_pam.width % tile_w); } cols = img_pam.width / tile_w; |