diff options
Diffstat (limited to 'gpib.c')
-rw-r--r-- | gpib.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -771,8 +771,11 @@ static void TNT_Holdoff_off() } -int GPIB_send_query_response(char *in_string) +int GPIB_send_query_response(gpointer *ignore_this, char *in_string) { + g_assert (ignore_this == NULL); + g_assert (in_string != NULL); + if (!globals.HWDetect.gpib) { return OK; } |