IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 19, 2005, 10:48:28 AM (21 years ago)
Author:
desonia
Message:

fixed some signedness warnings under GCC 4.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psMetadataIO.c

    r3945 r3980  
    1010*  @author Eric Van Alst, MHPCC
    1111*
    12 *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-05-16 19:43:53 $
     12*  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-05-19 20:48:28 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    11631163
    11641164    // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems
    1165     psTagName = psStringCopy(tagName);
     1165    psTagName = psStringCopy((const char*)tagName);
    11661166
    11671167    // Metadata containter for housing element attributes used by other SAX events
     
    11871187
    11881188                // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems
    1189                 psAttName = psStringCopy(attName);
    1190                 psAttValue = psStringCopy(attValue);
     1189                psAttName = psStringCopy((const char*)attName);
     1190                psAttValue = psStringCopy((const char*)attValue);
    11911191                psHashAdd(htAtts, psAttName, psAttValue);
    11921192                psFree(psAttName);
     
    14951495
    14961496    // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems
    1497     psEndTagName = psStringCopy(tagName);
     1497    psEndTagName = psStringCopy((const char*)tagName);
    14981498
    14991499    // Compare start and end tag names
Note: See TracChangeset for help on using the changeset viewer.