From 7cd01f287c8a48da5007ae9bc586148cef7f63e6 Mon Sep 17 00:00:00 2001 From: "Michael J. Chudobiak" Date: Fri, 7 Dec 2012 08:18:53 -0500 Subject: renamed remote/lockout variables to make them GPIB-specific --- menus.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'menus.c') diff --git a/menus.c b/menus.c index 6608b33..9b8668b 100644 --- a/menus.c +++ b/menus.c @@ -223,14 +223,14 @@ static void Read_Keypad(int *button_port_val, int *upper_encoder_val, int *lower static void update_remote_mode () { - int is_remote, is_lockout; - GPIB_check_remote_status (&is_remote, &is_lockout); + int gpib_remote, gpib_lockout; + GPIB_check_remote_status (&gpib_remote, &gpib_lockout); globals.Remote.mode = 0; - if (is_lockout) { + if (gpib_lockout) { globals.Remote.mode += RM_LOCK; } - if (is_remote) { + if (gpib_remote) { globals.Remote.mode += RM_REM; } if (globals.Remote.connections > 0) { -- cgit