summaryrefslogtreecommitdiff
path: root/menus.c
diff options
context:
space:
mode:
Diffstat (limited to 'menus.c')
-rw-r--r--menus.c8
1 files changed, 4 insertions, 4 deletions
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) {