summaryrefslogtreecommitdiff
path: root/tools/raw2tiff.c
diff options
context:
space:
mode:
authorAndrey Kiselev <dron@ak4719.spb.edu>2003-03-12 14:05:05 +0000
committerAndrey Kiselev <dron@ak4719.spb.edu>2003-03-12 14:05:05 +0000
commitc26da710494883bef7943d3752a113bf6a550e00 (patch)
tree3389544a97bc04fc1f5bfb683f57f10af5d6c300 /tools/raw2tiff.c
parentd8cd741e3bb5d7139589ccde2e3c395e229a152e (diff)
downloadlibtiff-git-c26da710494883bef7943d3752a113bf6a550e00.tar.gz
Added library version reporting to all tools.
Diffstat (limited to 'tools/raw2tiff.c')
-rw-r--r--tools/raw2tiff.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/raw2tiff.c b/tools/raw2tiff.c
index ca4ea90a..1d05b5c1 100644
--- a/tools/raw2tiff.c
+++ b/tools/raw2tiff.c
@@ -1,4 +1,4 @@
-/* $Id: raw2tiff.c,v 1.3 2003-02-04 08:51:38 dron Exp $
+/* $Id: raw2tiff.c,v 1.4 2003-03-12 14:05:06 dron Exp $
*
* Project: libtiff tools
* Purpose: Convert raw byte sequences in TIFF images
@@ -378,6 +378,7 @@ usage(void)
int i;
setbuf(stderr, buf);
+ fprintf(stderr, "%s\n\n", TIFFGetVersion());
for (i = 0; stuff[i] != NULL; i++)
fprintf(stderr, "%s\n", stuff[i]);
exit(-1);