Changeset 11784

Show
Ignore:
Timestamp:
07/26/07 13:24:56 (1 year ago)
Author:
warmerdam
Message:

Fix const issue.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gdal/port/cpl_http.cpp

    r11767 r11784  
    246246/* -------------------------------------------------------------------- */ 
    247247    char *pszNext; 
    248     pszNext = strstr((const char *) psResult->pabyData,osBoundary.c_str()); 
     248    pszNext = (char *)  
     249        strstr((const char *) psResult->pabyData,osBoundary.c_str()); 
    249250     
    250251    if( pszNext == NULL )