IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 25, 2006, 5:11:59 PM (20 years ago)
Author:
Paul Price
Message:

Require 'z' modifier for size_t argument.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fits/psFitsTable.c

    r8245 r8623  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2006-08-09 02:26:44 $
     9 *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2006-08-26 03:11:59 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    573573        psString colType = NULL;        // The column type
    574574        if (spec->type == PS_DATA_VECTOR) {
    575             psStringAppend(&colType, "%d%c", spec->size, getTForm(spec->vectorType));
     575            psStringAppend(&colType, "%zd%c", spec->size, getTForm(spec->vectorType));
    576576        } else {
    577             psStringAppend(&colType, "%d%c", spec->size, getTForm(spec->type));
     577            psStringAppend(&colType, "%zd%c", spec->size, getTForm(spec->type));
    578578        }
    579579        columnTypes->data[i] = colType;
Note: See TracChangeset for help on using the changeset viewer.