diff options
author | Scott Wood <scottwood@freescale.com> | 2012-12-14 16:03:55 -0600 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2012-12-14 16:03:55 -0600 |
commit | 88c5c68ffa277bf01b3254cf5a059e2cbe07be97 (patch) | |
tree | f56b444a1c85d94d6a386df090def099632489fe /common/env_mmc.c | |
parent | 0b38fffbe413fc0725c750d046ca62c23fca196e (diff) | |
parent | 6e9005bd96ff0f0548a787ffafee10664a57a8e1 (diff) | |
download | u-boot-imx-88c5c68ffa277bf01b3254cf5a059e2cbe07be97.zip u-boot-imx-88c5c68ffa277bf01b3254cf5a059e2cbe07be97.tar.gz u-boot-imx-88c5c68ffa277bf01b3254cf5a059e2cbe07be97.tar.bz2 |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'common/env_mmc.c')
-rw-r--r-- | common/env_mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/env_mmc.c b/common/env_mmc.c index a2ff90b..ce21671 100644 --- a/common/env_mmc.c +++ b/common/env_mmc.c @@ -130,7 +130,7 @@ int saveenv(void) } res = (char *)&env_new->data; - len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, 0, NULL); + len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL); if (len < 0) { error("Cannot export environment: errno = %d\n", errno); ret = 1; |