1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fix clang compile error in tabjson.cpp and tabbson.cpp

This commit is contained in:
Olivier Bertrand
2021-06-25 11:38:16 +02:00
parent 5c5d60b897
commit 6239e2a4ec
2 changed files with 2 additions and 2 deletions

View File

@@ -962,7 +962,7 @@ int TDBJSN::EstimatedLength(void)
PJSON TDBJSN::FindRow(PGLOBAL g)
{
char *p, *objpath = PlugDup(g, Objname);
char *sep = (Sep == ':') ? ":[" : ".[";
char *sep = (char*)(Sep == ':' ? ":[" : ".[");
bool bp = false, b = false;
PJSON jsp = Row;
PJVAL val = NULL;