summaryrefslogtreecommitdiff
path: root/firmware/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/system.c')
-rw-r--r--firmware/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/system.c b/firmware/system.c
index 290452b0af..87fc40850f 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -107,7 +107,7 @@ void cpu_boost_(bool on_off, char* location, int line)
107 { 107 {
108 int message = (cpu_boost_first+cpu_boost_calls_count)%MAX_BOOST_LOG; 108 int message = (cpu_boost_first+cpu_boost_calls_count)%MAX_BOOST_LOG;
109 snprintf(cpu_boost_calls[message], MAX_PATH, 109 snprintf(cpu_boost_calls[message], MAX_PATH,
110 "%c %s:%d",on_off==true?'B':'U',location,line); 110 "%c %s:%d",on_off?'B':'U',location,line);
111 cpu_boost_calls_count++; 111 cpu_boost_calls_count++;
112 } 112 }
113#else 113#else