Commit 8df3bffd authored by unknown's avatar unknown

Added frame offset to debug pring of local SP variables.

parent d1b02b37
......@@ -342,7 +342,10 @@ class Item_splocal : public Item
inline void print(String *str)
{
str->reserve(m_name.length+8);
str->append(m_name.str, m_name.length);
str->append('@');
str->qs_append(m_offset);
}
inline bool send(Protocol *protocol, String *str)
......
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