Skip to content

Commit

Permalink
Fix whitespace in new code
Browse files Browse the repository at this point in the history
"No space before "=" and space after cast please"
#332 (comment)
  • Loading branch information
ericherman authored and svoj committed Jun 13, 2017
1 parent 6486bac commit eede812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/mysql.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5077,7 +5077,7 @@ static void nice_time(double sec,char *buff,bool part_second)

static void end_timer(ulonglong start_time, char *buff)
{
double sec = (start_timer() - start_time) / (double)(1000 * 1000);
double sec= (start_timer() - start_time) / (double) (1000 * 1000);
nice_time(sec, buff, 1);
}

Expand Down

0 comments on commit eede812

Please sign in to comment.