Skip to content

Commit

Permalink
Fix the format.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fengting Chen committed Sep 24, 2024
1 parent d0b9076 commit 9d87a9b
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions frmts/georaster/georaster_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,11 @@ char **GeoRasterWrapper::ParseIdentificator(const char *pszStringID)

char *pszStartPos = (char *)strstr(pszStringID, ":") + 1;

char **papszParam =
CSLTokenizeString2(pszStartPos, ",@",
CSLT_HONOURSTRINGS | CSLT_ALLOWEMPTYTOKENS |
CSLT_STRIPLEADSPACES | CSLT_STRIPENDSPACES |
CSLT_PRESERVEQUOTES);

char **papszParam = CSLTokenizeString2(
pszStartPos, ",@",
CSLT_HONOURSTRINGS | CSLT_ALLOWEMPTYTOKENS | CSLT_STRIPLEADSPACES |
CSLT_STRIPENDSPACES | CSLT_PRESERVEQUOTES);

// -------------------------------------------------------------------
// The "/" should not be catch on the previous parser
// -------------------------------------------------------------------
Expand Down

0 comments on commit 9d87a9b

Please sign in to comment.