]> sigrok.org Git - libsigrok.git/commit
input/raw_analog: Fix gcc 7 compiler warnings.
authorUwe Hermann <redacted>
Sat, 24 Jun 2017 15:23:56 +0000 (17:23 +0200)
committerUwe Hermann <redacted>
Sat, 24 Jun 2017 15:23:56 +0000 (17:23 +0200)
commit41b8fca1a16479ebe2761fa63f0dcb86f0bb4c8f
tree60c66792710ad1925fe7d3cc493e3dbfb64254db
parent4a465510fb2a427089f3460da599a4dda6e4a146
input/raw_analog: Fix gcc 7 compiler warnings.

  ../src/input/raw_analog.c: In function ‘init’:
  ../src/input/raw_analog.c:133:31: warning: ‘%d’ directive output may be truncated writing between 1 and 10 bytes into a region of size 6 [-Wformat-truncation=]
     snprintf(channelname, 8, "CH%d", i + 1);
                                 ^~
  ../src/input/raw_analog.c:133:28: note: directive argument in the range [1, 2147483647]
     snprintf(channelname, 8, "CH%d", i + 1);
                              ^~~~~~
  ../src/input/raw_analog.c:133:3: note: ‘snprintf’ output between 4 and 13 bytes into a destination of size 8
     snprintf(channelname, 8, "CH%d", i + 1);
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/input/raw_analog.c