about summary refs log tree commit diff
path: root/converter/other/jbig/jbig.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-12-05 23:14:27 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-12-05 23:14:27 +0000
commit6683d5b2fb677b5c165035ac04ec84c8566745ba (patch)
treec64d5db5f8270480ab2f043fd3388a4b5904b950 /converter/other/jbig/jbig.c
parentacf1c3cd5f989ff0e2a3895f35875c918b4c3eb8 (diff)
downloadnetpbm-mirror-6683d5b2fb677b5c165035ac04ec84c8566745ba.tar.gz
netpbm-mirror-6683d5b2fb677b5c165035ac04ec84c8566745ba.tar.xz
netpbm-mirror-6683d5b2fb677b5c165035ac04ec84c8566745ba.zip
Release 10.47.71
git-svn-id: http://svn.code.sf.net/p/netpbm/code/super_stable@3450 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/jbig/jbig.c')
-rw-r--r--converter/other/jbig/jbig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/other/jbig/jbig.c b/converter/other/jbig/jbig.c
index ebd7c08f..f33f80be 100644
--- a/converter/other/jbig/jbig.c
+++ b/converter/other/jbig/jbig.c
@@ -818,7 +818,7 @@ void jbg_enc_options(struct jbg_enc_state *s, int order, int options,
   if (order >= 0 && order <= 0x0f) s->order = order;
   if (options >= 0) s->options = options;
   if (l0 >= 0) s->l0 = l0;
-  if (mx >= 0 && my < 128) s->mx = mx;
+  if (mx >= 0 && mx < 128) s->mx = mx;
   if (my >= 0 && my < 256) s->my = my;
 
   return;