From: Jehan Bing <jehan@orb.com>
To: "linux-mtd@lists.infradead.org" <linux-mtd@lists.infradead.org>
Subject: [PATCH 4/5 v3] [MTD-UTILS] Unified reading from standard input and from file
Date: Wed, 5 Aug 2009 17:41:08 -0700 [thread overview]
Message-ID: <4A7A26A4.6060803@orb.com> (raw)
Fix incorrect use of errno.
Signed-off-by: Jehan Bing <jehan@orb.com>
--- a/nandwrite.c 2009-08-04 17:10:59.000000000 -0700
+++ b/nandwrite.c 2009-08-04 17:11:03.000000000 -0700
@@ -626,8 +626,8 @@ int main(int argc, char * const argv[])
if (pwrite(fd, writebuf, meminfo.writesize, mtdoffset) != meminfo.writesize) {
erase_info_t erase;
- perror ("pwrite");
if (errno != EIO) {
+ perror("pwrite");
goto closeall;
}
@@ -639,8 +639,9 @@ int main(int argc, char * const argv[])
fprintf(stderr, "Erasing failed write from %08lx-%08lx\n",
(long)erase.start, (long)erase.start+erase.length-1);
if (ioctl(fd, MEMERASE, &erase) != 0) {
+ int errno_tmp = errno;
perror("MEMERASE");
- if (errno != EIO) {
+ if (errno_tmp != EIO) {
goto closeall;
}
}
reply other threads:[~2009-08-06 0:41 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4A7A26A4.6060803@orb.com \
--to=jehan@orb.com \
--cc=linux-mtd@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).