IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 28, 2007, 6:44:37 PM (19 years ago)
Author:
jhoblitt
Message:

rename all *_version fields to be *_id
change chip* tables to use a chip_id
change cam* tables to use a cam_id
change all *_id fields to be S64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/difftoolConfig.c

    r12029 r12131  
    239239    bool status = false;
    240240    if ((str = psMetadataLookupStr(&status, config->args, "-diff_id"))) {
    241         if (!psMetadataAddS32(config->where, PS_LIST_TAIL, "diff_id", 0, "==", (psS32)atoi(str))) {
     241        if (!psMetadataAddS64(config->where, PS_LIST_TAIL, "diff_id", 0, "==", (psS64)atoll(str))) {
    242242            psError(PS_ERR_UNKNOWN, false, "failed to add item diff_id");
    243243            psFree(config);
     
    250250    bool status = false;
    251251    if ((str = psMetadataLookupStr(&status, config->args, "-warp_id"))) {
    252         if (!psMetadataAddS32(config->where, PS_LIST_TAIL, "warp_id", 0, "==", (psS32)atoi(str))) {
     252        if (!psMetadataAddS64(config->where, PS_LIST_TAIL, "warp_id", 0, "==", (psS64)atoll(str))) {
    253253            psError(PS_ERR_UNKNOWN, false, "failed to add item warp_id");
    254254            psFree(config);
Note: See TracChangeset for help on using the changeset viewer.