libebl: Don't update w, t and len unnecessarily in ebl_object_note_type_name.
authorMark Wielaard <mark@klomp.org>
Thu, 15 Nov 2018 14:53:41 +0000 (15:53 +0100)
committerMark Wielaard <mark@klomp.org>
Thu, 15 Nov 2018 14:53:41 +0000 (15:53 +0100)
Harmless, but useless.

Signed-off-by: Mark Wielaard <mark@klomp.org>
libebl/ChangeLog
libebl/eblobjnotetypename.c

index 79a2ff4..a2f8956 100644 (file)
@@ -1,3 +1,8 @@
+2018-11-15  Mark Wielaard  <mark@klomp.org>
+
+       * eblobjnotetypename.c (ebl_object_note_type_name): Don't update
+       w, t and len unnecessarily.
+
 2018-11-12  Mark Wielaard  <mark@klomp.org>
 
        * libebl.h (ebl_object_note): Add new argument namesz.
index 29a5391..6b803ce 100644 (file)
@@ -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;
        }