Skip to content

Commit

Permalink
Fix type mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed May 29, 2018
1 parent 35a9c90 commit b7985a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/sql_string.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
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));
}
else if ((str_length=arg_length))
Expand Down

0 comments on commit b7985a4

Please sign in to comment.