Skip to content

Commit

Permalink
fixed const mismatch
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.osgeo.org/gdal/trunk@1671 f0d54148-0727-0410-94bb-9a71ac55c965
  • Loading branch information
warmerdam committed Sep 1, 2000
1 parent c319dce commit 5c48cb5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bridge/gdalbridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
******************************************************************************
*
* $Log$
* Revision 1.9 2000/09/01 19:12:09 warmerda
* fixed const mismatch
*
* Revision 1.8 2000/08/28 20:16:14 warmerda
* added lots of OGRSpatialReference stuff
*
Expand Down Expand Up @@ -229,7 +232,7 @@ int GDALBridgeInitialize( const char * pszTargetDir )
GBGetSymbol( szPath, "GDALGetColorEntry" );

GDALGetColorEntryAsRGB = (int (*)(GDALColorTableH,int,
const GDALColorEntry*))
GDALColorEntry*))
GBGetSymbol( szPath, "GDALGetColorEntryAsRGB" );

GDALSetColorEntry = (void (*)(GDALColorTableH, int, const GDALColorEntry*))
Expand Down

0 comments on commit 5c48cb5

Please sign in to comment.