Commit 6486bac2 authored by Eric Herman's avatar Eric Herman Committed by Sergey Vojtovich

Callers of start_timer should have ulonglong data type

Oversight spotted by svoj:
https://github.com/MariaDB/server/pull/332#discussion_r114708923
parent ca2d9546
......@@ -3209,7 +3209,8 @@ com_go(String *buffer,char *line __attribute__((unused)))
char buff[200]; /* about 110 chars used so far */
char time_buff[52+3+1]; /* time max + space&parens + NUL */
MYSQL_RES *result;
ulong timer, warnings= 0;
ulonglong timer;
ulong warnings= 0;
uint error= 0;
int err= 0;
......
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