lib: errno: avoid error format-overflow 25/221625/1
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 6 Oct 2019 11:58:57 +0000 (13:58 +0200)
committerSeung-Woo Kim <sw0312.kim@samsung.com>
Mon, 6 Jan 2020 09:31:40 +0000 (18:31 +0900)
commitae92c913f5c1349dae177639bfa5c73ca6933fe1
tree13011ba67d84a4acaeeedb37f45658c3e5bd6892
parent897e96e0f90bb9b2eee6c699b923124d0c474219
lib: errno: avoid error format-overflow

In cmd/regulator.c an error occurs with GCC 9.2.1 if CONFIG_ERRNO_STR is
not defined:

cmd/regulator.c: In function ‘failure’:
cmd/regulator.c:20:2: error: ‘%s’ directive argument is null
[-Werror=format-overflow=]
   20 |  printf("Error: %d (%s)\n", ret, errno_str(ret));
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In function ‘constraint’,
    inlined from ‘constraint’ at cmd/regulator.c:111:12:
cmd/regulator.c:115:3: error: ‘%s’ directive argument is null
[-Werror=format-overflow=]
  115 |   printf(" %s (err: %d)\n", errno_str(val), val);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

errno_str() should return a valid string instead of NULL if
CONFIG_ERRNO_STR is not defined.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
[sw0312.kim: cherry-pick mainline commit f279e1d9167f to remove gcc 9 build warning]
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Change-Id: Ib7819bfd2bb93bd44801229c5fce8f4c511765c5
include/errno.h