Skip to content

Commit

Permalink
Callers of start_timer should have ulonglong data type
Browse files Browse the repository at this point in the history
Oversight spotted by svoj:
#332 (comment)
  • Loading branch information
ericherman authored and Sergey Vojtovich committed Jun 13, 2017
1 parent ca2d954 commit 6486bac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/mysql.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 6486bac

Please sign in to comment.