summaryrefslogtreecommitdiff
path: root/aoview/aoview_eeprom.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2009-07-18 00:43:22 -0700
committerKeith Packard <keithp@keithp.com>2009-07-18 00:43:22 -0700
commit1e5e98bd8f5ea0bc15592de454e3629383462371 (patch)
treef9a3088baebc0f2d3f5f0654dc4e8a526d0744c1 /aoview/aoview_eeprom.c
parent08f37056deec25d77062bc411a04033401b033a5 (diff)
Trim aoview_serial_set_callback args down to just port and callback
Diffstat (limited to 'aoview/aoview_eeprom.c')
-rw-r--r--aoview/aoview_eeprom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aoview/aoview_eeprom.c b/aoview/aoview_eeprom.c
index 826afc43..34e2deed 100644
--- a/aoview/aoview_eeprom.c
+++ b/aoview/aoview_eeprom.c
@@ -140,7 +140,7 @@ aoview_eeprom_save(const char *device)
serial = aoview_serial_open(device);
if (!serial)
return FALSE;
- aoview_serial_set_callback(serial, aoview_eeprom_callback, serial, NULL);
+ aoview_serial_set_callback(serial, aoview_eeprom_callback);
aoview_serial_printf(serial, "v\nl\n");
return TRUE;
}