Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 1, 2009, 3:21:28 PM (15 years ago)
Author:
rgrieder
Message:

Found two more unsigned int —> size_t possible 64 bit issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation/src/core/Language.cc

    r2485 r2560  
    232232            if ((lineString != "") && (lineString.size() > 0))
    233233            {
    234                 unsigned int pos = lineString.find('=');
     234                size_t pos = lineString.find('=');
    235235
    236236                // Check if the length is at least 3 and if there's an entry before and behind the =
     
    278278            if ((lineString != "") && (lineString.size() > 0))
    279279            {
    280                 unsigned int pos = lineString.find('=');
     280                size_t pos = lineString.find('=');
    281281
    282282                // Check if the length is at least 3 and if there's an entry before and behind the =
Note: See TracChangeset for help on using the changeset viewer.