瀏覽代碼

src/profiling/profiling_helpers.c: follow coding convention

Nathalie Furmento 8 年之前
父節點
當前提交
4aec7b4753
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/profiling/profiling_helpers.c

+ 2 - 1
src/profiling/profiling_helpers.c

@@ -24,7 +24,8 @@ static double convert_to_byte_units(float d, unsigned max_unit, unsigned *unit)
 	const double divisor = 1024;
 
 	*unit = 0;
-	while (d > divisor && *unit < max_unit) {
+	while (d > divisor && *unit < max_unit)
+	{
 		d /= divisor;
 		(*unit)++;
 	}