Commit 30d19bf4 authored by vasil's avatar vasil

branches/zip:

Non-functional change:
Fix consistency of the sizeof() operator with the rest of i_s.cc

Pointyhat to:	Marko
parent 857c6501
......@@ -558,7 +558,7 @@ fill_innodb_locks_from_cache(
row->lock_type));
/* lock_table */
bufend = innobase_convert_name(buf, sizeof buf,
bufend = innobase_convert_name(buf, sizeof(buf),
row->lock_table,
strlen(row->lock_table),
thd, TRUE);
......@@ -566,7 +566,7 @@ fill_innodb_locks_from_cache(
system_charset_info));
/* lock_index */
bufend = innobase_convert_name(buf, sizeof buf,
bufend = innobase_convert_name(buf, sizeof(buf),
row->lock_index,
strlen(row->lock_index),
thd, FALSE);
......
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