Skip to content

Commit 030d159

Browse files
authored
fix
1 parent 01acbc6 commit 030d159

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/mapogr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2279,7 +2279,7 @@ static int msOGRFileWhichShapes(layerObj *layer, rectObj rect,
22792279
if (layer->debug >= MS_DEBUGLEVEL_DEBUG)
22802280
msDebug("msOGRFileWhichShapes: The dialect is %s\n", psInfo->dialect);
22812281
if (layer->debug >= MS_DEBUGLEVEL_DEBUG)
2282-
msDebug("msOGRFileWhichShapes: rect is %s\n", bIsValidRect);
2282+
msDebug("msOGRFileWhichShapes: rect is %d\n", bIsValidRect);
22832283
if (psInfo->dialect && bIsValidRect) {
22842284
if ((EQUAL(psInfo->dialect, "PostgreSQL"))||
22852285
(EQUAL(psInfo->dialect, "Parquet"))){
@@ -2551,7 +2551,7 @@ static int msOGRFileWhichShapes(layerObj *layer, rectObj rect,
25512551
ACQUIRE_OGR_LOCK;
25522552

25532553
if (layer->debug)
2554-
msDebug("msOGRFileWhichShapes: geom type %s\n", OGR_L_GetGeomType(psInfo->hLayer));
2554+
msDebug("msOGRFileWhichShapes: geom type %u\n", OGR_L_GetGeomType(psInfo->hLayer));
25552555

25562556
if (OGR_L_GetGeomType(psInfo->hLayer) != wkbNone && bIsValidRect) {
25572557
if (rect.minx == rect.maxx && rect.miny == rect.maxy) {

0 commit comments

Comments
 (0)