IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 21146


Ignore:
Timestamp:
Jan 21, 2009, 12:26:46 PM (17 years ago)
Author:
eugene
Message:

allow signed values in Generic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20081230/psModules/src/config/pmConfigMask.c

    r21143 r21146  
    168168            fullValue = item->data.U64;
    169169            break;
    170             // XXX we could code this to accept Snn values, but they should not normally be used for masks
     170          case PS_DATA_S8:
     171            fullValue = item->data.S8;
     172            break;
     173          case PS_DATA_S16:
     174            fullValue = item->data.S16;
     175            break;
     176          case PS_DATA_S32:
     177            fullValue = item->data.S32;
     178            break;
     179          case PS_DATA_S64:
     180            fullValue = item->data.S64;
     181            break;
    171182          default:
    172183            psWarning("Mask entry %s in metadata is not of a mask type", name);
Note: See TracChangeset for help on using the changeset viewer.