diff options
author | monty@hundin.mysql.fi <> | 2001-12-02 14:34:01 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-12-02 14:34:01 +0200 |
commit | 1d26537da53fee228b2f9d974d4806a06b76e33e (patch) | |
tree | 8e30a64d5c7aaa0ba8554c4c316cc9b76a6724ca /regex/split.c | |
parent | 8a8617075a9e6ae3537bb8d81c8f4ab62e77fa44 (diff) | |
download | mariadb-git-1d26537da53fee228b2f9d974d4806a06b76e33e.tar.gz |
Query cache.
Remove some warnings
Diffstat (limited to 'regex/split.c')
-rw-r--r-- | regex/split.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regex/split.c b/regex/split.c index 188bdb775b9..bd2a53c01e3 100644 --- a/regex/split.c +++ b/regex/split.c @@ -27,7 +27,7 @@ char *sep; /* "" white, "c" single char, "ab" [ab]+ */ continue; p--; trimtrail = 1; - sep = " \t"; /* note, code below knows this is 2 long */ + sep = (char*) " \t"; /* note, code below knows this is 2 long */ sepc = ' '; } else trimtrail = 0; |