From: Mark Wielaard Date: Thu, 15 Nov 2018 14:53:41 +0000 (+0100) Subject: libebl: Don't update w, t and len unnecessarily in ebl_object_note_type_name. X-Git-Tag: elfutils-0.175~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c338a0541663af13ede85732a472068ec74d9993;p=platform%2Fupstream%2Felfutils.git libebl: Don't update w, t and len unnecessarily in ebl_object_note_type_name. Harmless, but useless. Signed-off-by: Mark Wielaard --- diff --git a/libebl/ChangeLog b/libebl/ChangeLog index 79a2ff4..a2f8956 100644 --- a/libebl/ChangeLog +++ b/libebl/ChangeLog @@ -1,3 +1,8 @@ +2018-11-15 Mark Wielaard + + * eblobjnotetypename.c (ebl_object_note_type_name): Don't update + w, t and len unnecessarily. + 2018-11-12 Mark Wielaard * libebl.h (ebl_object_note): Add new argument namesz. diff --git a/libebl/eblobjnotetypename.c b/libebl/eblobjnotetypename.c index 29a5391..6b803ce 100644 --- a/libebl/eblobjnotetypename.c +++ b/libebl/eblobjnotetypename.c @@ -91,13 +91,11 @@ ebl_object_note_type_name (Ebl *ebl, const char *name, uint32_t type, t += w; len -= w; if (type == NT_GNU_BUILD_ATTRIBUTE_OPEN) - w = snprintf (t, len, "OPEN"); + snprintf (t, len, "OPEN"); else if (type == NT_GNU_BUILD_ATTRIBUTE_FUNC) - w = snprintf (t, len, "FUNC"); + snprintf (t, len, "FUNC"); else - w = snprintf (t, len, "%x", type); - t += w; - len -= w; + snprintf (t, len, "%x", type); return buf; }