summaryrefslogtreecommitdiff
path: root/env/env.c
diff options
context:
space:
mode:
Diffstat (limited to 'env/env.c')
-rw-r--r--env/env.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/env/env.c b/env/env.c
index c186dca478..157f1e6568 100644
--- a/env/env.c
+++ b/env/env.c
@@ -168,8 +168,9 @@ int env_save(void)
if (!drv->save)
continue;
- printf("Saving Environment to %s...\n", drv->name);
+ printf("Saving Environment to %s... ", drv->name);
ret = drv->save();
+ printf("%s\n", ret ? "Failed" : "OK");
if (!ret)
return 0;