From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peng Fan Date: Mon, 28 Mar 2016 17:26:27 +0800 Subject: [U-Boot] [PATCH] common: env_sf: Add exclamation mark Message-ID: <1459157187-4805-1-git-send-email-van.freenix@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Add exclamation mark to the errmsg, when error and set_default_env. Signed-off-by: Peng Fan Cc: Mario Schuknecht Cc: Vignesh R Cc: Jagan Teki Cc: Ravi Babu Cc: York Sun Cc: Tom Rini --- common/env_sf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/env_sf.c b/common/env_sf.c index 892e6cb..273098c 100644 --- a/common/env_sf.c +++ b/common/env_sf.c @@ -225,7 +225,7 @@ void env_relocate_spec(void) ret = env_import((char *)ep, 0); if (!ret) { error("Cannot import environment: errno = %d\n", errno); - set_default_env("env_import failed"); + set_default_env("!env_import failed"); } err_read: -- 2.6.2