From 0be57677ef0987124f38b93a5489cec9654fde1f Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 2 Aug 2015 20:10:33 +0000 Subject: Fix -min, -max: type needs to be float, not double because it is accessed via a pointer to float git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2619 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/other/fitstopnm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/converter/other/fitstopnm.c b/converter/other/fitstopnm.c index 4ea2d20a..6fe90a49 100644 --- a/converter/other/fitstopnm.c +++ b/converter/other/fitstopnm.c @@ -57,9 +57,9 @@ struct CmdlineInfo { const char * inputFileName; unsigned int image; /* zero if unspecified */ - double max; + float max; unsigned int maxSpec; - double min; + float min; unsigned int minSpec; unsigned int scanmax; unsigned int printmax; -- cgit 1.4.1