greenstone.org greenstone wiki greenstone trac planet greenstone

Changeset 15662

Show
Ignore:
Timestamp:
2008-05-23 11:34:47 (6 months ago)
Author:
mdewsnip
Message:

Fixed up a dodgy if statement to avoid a compile warning and probably a runtime bug.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • indexers/trunk/mgpp/text/mgpp_passes.cpp

    r12331 r15662  
    202202    case 'M': 
    203203      maxnum = atoi(optarg); 
    204       if (4 < maxnum < 512) { 
     204      if (maxnum > 4 && maxnum < 512) { 
    205205        MAXNUMERIC = maxnum; 
    206206      }