Commit eede812f authored by Eric Herman's avatar Eric Herman Committed by Sergey Vojtovich

Fix whitespace in new code

"No space before "=" and space after cast please"
https://github.com/MariaDB/server/pull/332#discussion_r114708923
parent 6486bac2
...@@ -5077,7 +5077,7 @@ static void nice_time(double sec,char *buff,bool part_second) ...@@ -5077,7 +5077,7 @@ static void nice_time(double sec,char *buff,bool part_second)
static void end_timer(ulonglong start_time, char *buff) 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); nice_time(sec, buff, 1);
} }
......
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