aboutsummaryrefslogtreecommitdiff
path: root/apps/systemcmds
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2012-08-28 22:15:25 -0700
committerpx4dev <px4@purgatory.org>2012-08-28 22:15:25 -0700
commit1a781c6c4a025b06ce8db34473838e8d3891af3a (patch)
treeede126461d567283533fe410bab6dcc9a2259ad4 /apps/systemcmds
parentf0286d1a10343c573fac6382e3c2cb0b714a1f72 (diff)
downloadpx4-firmware-1a781c6c4a025b06ce8db34473838e8d3891af3a.tar.gz
px4-firmware-1a781c6c4a025b06ce8db34473838e8d3891af3a.tar.bz2
px4-firmware-1a781c6c4a025b06ce8db34473838e8d3891af3a.zip
Make the distinction between "parameter import" which merges parameters, and "parameter load" which blows away any current changes.
Diffstat (limited to 'apps/systemcmds')
-rw-r--r--apps/systemcmds/eeprom/eeprom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/systemcmds/eeprom/eeprom.c b/apps/systemcmds/eeprom/eeprom.c
index 4a641dd0a..6d1037a13 100644
--- a/apps/systemcmds/eeprom/eeprom.c
+++ b/apps/systemcmds/eeprom/eeprom.c
@@ -216,7 +216,7 @@ eeprom_load(const char *name)
if (fd < 0)
err(1, "open '%s'", name);
- int result = param_import(fd);
+ int result = param_load(fd);
close(fd);
if (result < 0)