Skip to content

Commit

Permalink
Linting fixes... one more time.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdlime committed Feb 18, 2024
1 parent 0209f37 commit a8ae59f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mapservutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -2002,8 +2002,8 @@ int msCGIDispatchQueryRequest(mapservObj *mapserv) {
/* catch empty result set when web->empty is set (#6907) */
if (mapserv->map->web.empty != NULL ||
CPLGetConfigOption("MS_EMPTY", NULL) != NULL) {
int n=0;
for (int i=0; i<mapserv->map->numlayers; i++) { // count results
int n = 0;
for (int i = 0; i < mapserv->map->numlayers; i++) { // count results
if (mapserv->map->layers[i]->resultcache) {
n += mapserv->map->layers[i]->resultcache->numresults;
}
Expand Down

0 comments on commit a8ae59f

Please sign in to comment.