From: Christos Zoulas Date: Fri, 3 Aug 2018 09:00:13 +0000 (+0000) Subject: remove extra parens X-Git-Tag: FILE5_35~60 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b9e60f088847f885b5c9fde61ff8fc9645843506;p=file remove extra parens --- diff --git a/src/readelf.c b/src/readelf.c index 71836ca2..7598a31c 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -27,7 +27,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: readelf.c,v 1.150 2018/08/02 12:46:02 christos Exp $") +FILE_RCSID("@(#)$File: readelf.c,v 1.151 2018/08/03 09:00:13 christos Exp $") #endif #ifdef BUILTIN_ELF @@ -1118,7 +1118,7 @@ donote(struct magic_set *ms, void *vbuf, size_t offset, size_t size, } if (namesz & 0x80000000) { - if (((file_printf(ms, ", bad note name size %#lx", + if (file_printf(ms, ", bad note name size %#lx", CAST(unsigned long, namesz)) == -1) return -1; return 0;