diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-09-07 10:27:31 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-09-07 10:27:31 -0400 |
commit | 959e1cf54cea0a3252c4852224a290c56c50df2a (patch) | |
tree | 4dd7bd4407e405ed3a2ead1fafe2fa8074db6c02 /error_utils.c | |
parent | b9264ec05328aae8f29e56d945f5168848b89737 (diff) |
style fixes
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); |