Callers of start_timer should have ulonglong data type

Oversight spotted by svoj:
https://github.com/MariaDB/server/pull/332#discussion_r114708923
This commit is contained in:
Eric Herman 2017-06-08 12:11:16 +02:00 committed by Sergey Vojtovich
parent ca2d9546c8
commit 6486bac29f

View File

@ -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;