Skip to content

Commit b7985a4

Browse files
committed
Fix type mismatch
1 parent 35a9c90 commit b7985a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/sql_string.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ bool String::copy(const char *str,uint32 arg_length, CHARSET_INFO *cs)
189189
This can happen in some cases. This code is here mainly to avoid
190190
warnings from valgrind, but can also be an indication of error.
191191
*/
192-
DBUG_PRINT("warning", ("Copying string on itself: %p %lu",
192+
DBUG_PRINT("warning", ("Copying string on itself: %p %u",
193193
str, arg_length));
194194
}
195195
else if ((str_length=arg_length))

0 commit comments

Comments
 (0)