diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-12-07 11:10:01 -0500 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-12-07 11:10:01 -0500 |
commit | cf492a7c67e82818e805a67aa5e1b91ec8a595b1 (patch) | |
tree | 4c443bf7097e4cd152483de0817f8a692d05e250 /instr-daemon.c | |
parent | 3fe4c0eead043da3eeb178a854bd9ca81a282807 (diff) |
renamed gpib_input_buffer for clarity
Diffstat (limited to 'instr-daemon.c')
-rw-r--r-- | instr-daemon.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/instr-daemon.c b/instr-daemon.c index 73a847e..255b294 100644 --- a/instr-daemon.c +++ b/instr-daemon.c @@ -413,9 +413,9 @@ static gboolean periodic_poll (void) globals.VxiLocks.command_in_progress = TRUE; GPIB_check_for_device_clear_signal(); - if (GPIB_check_for_messages(globals.Registers.gpib_buffer)) { - if (GPIB_handle_new_input(globals.Registers.gpib_buffer)) { - Parser_main(globals.Registers.gpib_buffer, 0, GPIB_send_query_response, NULL); + if (GPIB_check_for_messages(globals.Registers.gpib_input_buffer)) { + if (GPIB_handle_new_input(globals.Registers.gpib_input_buffer)) { + Parser_main(globals.Registers.gpib_input_buffer, 0, GPIB_send_query_response, NULL); } } GPIB_check_for_device_clear_signal(); |