diff options
Diffstat (limited to 'error_utils.c')
-rw-r--r-- | error_utils.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/error_utils.c b/error_utils.c index 8b28cf6..32ea779 100644 --- a/error_utils.c +++ b/error_utils.c @@ -135,9 +135,9 @@ void queue_error_for_gpib_only(int error_num) void queue_error_and_display_on_LCD(int error_num) { - if (error_num == OK) { - return; - } + if (error_num == OK) { + return; + } gchar* response = NULL; queue_error_and_get_text(&response, error_num); @@ -148,9 +148,9 @@ void queue_error_and_display_on_LCD(int error_num) void queue_and_broadcast_sensor_alarm(int error_num) // FIXME - implement { - if (error_num == OK) { - return; - } + if (error_num == OK) { + return; + } gchar* response = NULL; queue_error_and_get_text(&response, error_num); |