summaryrefslogtreecommitdiffstats
path: root/commands/of_diff.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands/of_diff.c')
-rw-r--r--commands/of_diff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/of_diff.c b/commands/of_diff.c
index 8acfd42a6b..ec039776cf 100644
--- a/commands/of_diff.c
+++ b/commands/of_diff.c
@@ -64,14 +64,14 @@ static int do_of_diff(int argc, char *argv[])
b = get_tree(argv[2], root);
if (IS_ERR(a)) {
- printf("Cannot read %s: %s\n", argv[1], strerrorp(a));
+ printf("Cannot read %s: %pe\n", argv[1], a);
ret = COMMAND_ERROR;
a = NULL;
goto out;
}
if (IS_ERR(b)) {
- printf("Cannot read %s: %s\n", argv[2], strerrorp(b));
+ printf("Cannot read %s: %pe\n", argv[2], b);
ret = COMMAND_ERROR;
b = NULL;
goto out;