From: Richard Jones Date: Thu, 4 Feb 2010 16:32:22 +0000 (+0000) Subject: hivexsh: del command: Fix error message. X-Git-Tag: 1.1.0~19 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=2d4143177342c920f6ab139d72ec32d74c236dee;p=hivex.git hivexsh: del command: Fix error message. --- diff --git a/hivex/hivexsh.c b/hivex/hivexsh.c index 1bd3b8b..d5d9ada 100644 --- a/hivex/hivexsh.c +++ b/hivex/hivexsh.c @@ -1069,7 +1069,7 @@ cmd_del (char *args) hive_node_h new_cwd = hivex_node_parent (h, cwd); if (hivex_node_delete_child (h, cwd) == -1) { - perror ("del"); + perror ("hivexsh: del"); return -1; }