IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 4, 2008, 1:44:12 PM (18 years ago)
Author:
bills
Message:

Use PRId64 instead of %lld in format strings.

File:
1 edited

Legend:

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

    r16291 r16296  
    223223
    224224    psS64 req_id = psDBLastInsertID(config->dbh);
    225     printf("%lld\n", req_id);
     225    printf("%" PRId64 "\n", req_id);
    226226
    227227    return true;
     
    411411
    412412    psS64 job_id = psDBLastInsertID(config->dbh);
    413     printf("%lld\n", job_id);
     413    printf("%" PRId64 "\n", job_id);
    414414
    415415    return true;
Note: See TracChangeset for help on using the changeset viewer.