summaryrefslogtreecommitdiff
path: root/ld/testplug4.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2016-05-14 05:51:28 -0700
committerH.J. Lu <hjl.tools@gmail.com>2016-05-14 05:51:28 -0700
commitbf6f87e726c7e585402575a0976c717c6edd9817 (patch)
tree71fefe015b45e79560b9e5404699a6035d694e30 /ld/testplug4.c
parent34ac9af335c2243f85f1e569e21506b35521dd7a (diff)
Remove redundant sizeof on EXPECTED_VIEW_LENGTH
PR ld/20097 * testplug2.c (onall_symbols_read): Remove redundant sizeof on EXPECTED_VIEW_LENGTH. * testplug4.c (onall_symbols_read): Likewise.
Diffstat (limited to 'ld/testplug4.c')
-rw-r--r--ld/testplug4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/testplug4.c b/ld/testplug4.c
index fe7665aea3f..86bad65cba6 100644
--- a/ld/testplug4.c
+++ b/ld/testplug4.c
@@ -608,7 +608,7 @@ onall_symbols_read (void)
#define EXPECTED_VIEW "/* The first line of this file must match the expectation of"
#define EXPECTED_VIEW_LENGTH (sizeof (EXPECTED_VIEW) - 1)
if (file.filesize != SIZE_OF_PR20070B_C
- || SIZE_OF_PR20070B_C < sizeof EXPECTED_VIEW_LENGTH
+ || SIZE_OF_PR20070B_C < EXPECTED_VIEW_LENGTH
|| memcmp (view, EXPECTED_VIEW, EXPECTED_VIEW_LENGTH) != 0)
{
char result[EXPECTED_VIEW_LENGTH + 1];