From: Grant Erickson Date: Sun, 7 Sep 2008 18:28:56 +0000 (+0000) Subject: nandwrite: Pass Real Names as Arguments to perror X-Git-Tag: v1.3.0~139 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=ada3a5a5c96b434cd9b9a58928c792466527fc74;p=mtd-utils.git nandwrite: Pass Real Names as Arguments to perror Pass the MTD device node and input file name as arguments to perror rather than more ambigous, static messages on open failures. Signed-off-by: Grant Erickson Acked-by: Artem Bityutskiy Signed-off-by: Josh Boyer --- diff --git a/nandwrite.c b/nandwrite.c index b1a4307..e5de140 100644 --- a/nandwrite.c +++ b/nandwrite.c @@ -230,7 +230,7 @@ int main(int argc, char * const argv[]) /* Open the device */ if ((fd = open(mtd_device, O_RDWR)) == -1) { - perror("open flash"); + perror(mtd_device); exit (EXIT_FAILURE); } @@ -337,7 +337,7 @@ int main(int argc, char * const argv[]) /* Open the input file */ if ((ifd = open(img, O_RDONLY)) == -1) { - perror("open input file"); + perror(img); goto restoreoob; }