From adcff94ea9dd955b22f3c4027b1bd6a9a307f619 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Tue, 22 May 2007 22:37:54 +0000 Subject: Add missing break for BITPIX = -32 git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@307 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/other/fitstopnm.c | 1 + 1 file changed, 1 insertion(+) (limited to 'converter/other') diff --git a/converter/other/fitstopnm.c b/converter/other/fitstopnm.c index 796ca489..b143882b 100644 --- a/converter/other/fitstopnm.c +++ b/converter/other/fitstopnm.c @@ -418,6 +418,7 @@ read_val (fp, bitpix, vp) else lval = c[0]<<24 | c[1]<<16 | c[2]<<8 | c[3]; *vp = lval; + break; case -32: for (i=0; i<4; i++) { -- cgit 1.4.1