IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 1, 2006, 6:08:45 PM (20 years ago)
Author:
jhoblitt
Message:

use long instead of int as loop counters

File:
1 edited

Legend:

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

    r8045 r8062  
    1313    doneFrames->n = 0;
    1414
    15     for (int i = 0; i < pendingFrames->n; i++) {
     15    for (long i = 0; i < pendingFrames->n; i++) {
    1616        p2PendingFrame *pendingFrame = pendingFrames->data[i];
    1717// if (pendingFrame->exposure->state != P2_STATE_DONE) continue;
     
    3333        psArray *doneImages = psArrayAlloc(pendingFrame->images->n);
    3434        doneImages->n = 0;
    35         for (int j = 0; j < pendingFrame->images->n; j++) {
     35        for (long j = 0; j < pendingFrame->images->n; j++) {
    3636            p2PendingImfileRow *pendingImage = pendingFrame->images->data[j];
    3737
Note: See TracChangeset for help on using the changeset viewer.