IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18518


Ignore:
Timestamp:
Jul 14, 2008, 3:16:07 PM (18 years ago)
Author:
Paul Price
Message:

Fixing another str --> S64 issue

File:
1 edited

Legend:

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

    r18336 r18518  
    248248
    249249{
    250     psString str = NULL;
     250    psS64 s64 = 0;
    251251    bool status = false;
    252     if ((str = psMetadataLookupStr(&status, config->args, "-diff_id"))) {
    253         if (!psMetadataAddS64(config->where, PS_LIST_TAIL, "diff_id", 0, "==", (psS64)atoll(str))) {
     252    if ((s64 = psMetadataLookupS64(&status, config->args, "-diff_id"))) {
     253        if (!psMetadataAddS64(config->where, PS_LIST_TAIL, "diff_id", 0, "==", s64)) {
    254254            psError(PS_ERR_UNKNOWN, false, "failed to add item diff_id");
    255255            psFree(config);
Note: See TracChangeset for help on using the changeset viewer.