summaryrefslogtreecommitdiff
path: root/futility/cmd_dump_fmap.c
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2014-07-09 21:47:32 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-07-15 21:21:20 +0000
commit71dc66a9b3b3945eebedb0440933aea1c693af95 (patch)
tree9232f724af6035c70264ad539429c9c5b1a29c89 /futility/cmd_dump_fmap.c
parent18e03706df6ab4256a89f4e578ecf0f165641c8a (diff)
downloadvboot-71dc66a9b3b3945eebedb0440933aea1c693af95.tar.gz
Cleanup: remove some noisy output from some utilities
There are a few utilities that print the full path of any file they open. This isn't necessary, and it just has to be ignored when running regression tests from different directories. This just removes that extra noise. BUG=chromium:224734 BRANCH=ToT TEST=make runtests Change-Id: I4291bca7952a0d7371f8682b7d57545361c6341c Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/207619 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'futility/cmd_dump_fmap.c')
-rw-r--r--futility/cmd_dump_fmap.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/futility/cmd_dump_fmap.c b/futility/cmd_dump_fmap.c
index 4faf2212..fbd96209 100644
--- a/futility/cmd_dump_fmap.c
+++ b/futility/cmd_dump_fmap.c
@@ -433,8 +433,6 @@ static int do_dump_fmap(int argc, char *argv[])
strerror(errno));
return 1;
}
- if (FMT_NORMAL == opt_format)
- printf("opened %s\n", argv[optind]);
base_of_rom = mmap(0, sb.st_size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
if (base_of_rom == (char*)-1) {