Commit b7985a45 authored by Marko Mäkelä's avatar Marko Mäkelä

Fix type mismatch

parent 35a9c90f
...@@ -189,7 +189,7 @@ bool String::copy(const char *str,uint32 arg_length, CHARSET_INFO *cs) ...@@ -189,7 +189,7 @@ bool String::copy(const char *str,uint32 arg_length, CHARSET_INFO *cs)
This can happen in some cases. This code is here mainly to avoid This can happen in some cases. This code is here mainly to avoid
warnings from valgrind, but can also be an indication of error. warnings from valgrind, but can also be an indication of error.
*/ */
DBUG_PRINT("warning", ("Copying string on itself: %p %lu", DBUG_PRINT("warning", ("Copying string on itself: %p %u",
str, arg_length)); str, arg_length));
} }
else if ((str_length=arg_length)) else if ((str_length=arg_length))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment