summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorGeorgi Kodinov <joro@sun.com>2009-01-09 20:30:55 +0200
committerGeorgi Kodinov <joro@sun.com>2009-01-09 20:30:55 +0200
commit529fff05bf172dd806c2a6ccbdcf3222a0b35ab7 (patch)
tree7916270424f73e3aec2448c78421147cf0c98cbb /client
parentaf0e03b2622f2213d512bf5e11aecaaf401531fb (diff)
downloadmariadb-git-529fff05bf172dd806c2a6ccbdcf3222a0b35ab7.tar.gz
fixed a compile warning
Diffstat (limited to 'client')
-rw-r--r--client/mysqltest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c
index d73cf78d9d4..62ec5a88599 100644
--- a/client/mysqltest.c
+++ b/client/mysqltest.c
@@ -1344,7 +1344,7 @@ int diff_check()
{
char buf[512]= {0};
FILE *res_file;
- char *cmd = "diff -v";
+ const char *cmd = "diff -v";
int have_diff = 0;
if (!(res_file= popen(cmd, "r")))