]> git.proxmox.com Git - mirror_iproute2.git/commit
ss: initialise variables outside of for loop
authorSimon Horman <simon.horman@netronome.com>
Fri, 2 Dec 2016 11:56:05 +0000 (12:56 +0100)
committerStephen Hemminger <stephen@networkplumber.org>
Fri, 2 Dec 2016 22:17:09 +0000 (14:17 -0800)
commit1dd0cca7faef1d0223347caa30589c7d36a6ad8f
treef5cbf25b5aa007eb5ddf38b93eeb56c2c8688169
parentf5f760b81250630da23a4021c30e802695be79d2
ss: initialise variables outside of for loop

Initialise for loops outside of for loops. GCC flags this as being
out of spec unless C99 or C11 mode is used.

With this change the entire tree appears to compile cleanly with -Wall.

$ gcc --version
gcc (Debian 4.9.2-10) 4.9.2
...
$ make
...
ss.c: In function ‘unix_show_sock’:
ss.c:3128:4: error: ‘for’ loop initial declarations are only allowed in C99 or C11 mode
...

Signed-off-by: Simon Horman <simon.horman@netronome.com>
misc/ss.c