libs/libc/modlib/modlib_sections.c: Remove a redundant assignment

Found by clang-check:

modlib/modlib_sections.c:93:3: warning: Value stored to 'buffer' is never read
  buffer    = loadinfo->iobuffer;
  ^           ~~~~~~~~~~~~~~~~~~
1 warning generated.
This commit is contained in:
YAMAMOTO Takashi 2020-07-30 17:00:20 +09:00 committed by Alin Jerpelea
parent e22dffba8e
commit b6316e9a03

View File

@ -90,7 +90,6 @@ static inline int modlib_sectname(FAR struct mod_loadinfo_s *loadinfo,
/* Loop until we get the entire section name into memory */
buffer = loadinfo->iobuffer;
bytesread = 0;
for (; ; )