From 2d03fe390b8a187f7ce89dec95bf9368a8154383 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Tue, 30 Jun 2020 21:27:26 -0400 Subject: [PATCH] chore: remove blank line to clarify unit --- runtime/src/main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/src/main.c b/runtime/src/main.c index cbc6dad..3d48a34 100644 --- a/runtime/src/main.c +++ b/runtime/src/main.c @@ -104,7 +104,6 @@ static inline float runtime_get_processor_speed_MHz(void) { FILE *cmd = popen("grep '^cpu MHz' /proc/cpuinfo | head -n 1 | awk '{print $4}'", "r"); - if (cmd == NULL) return -1; float processor_speed_MHz;