firmware-utils: fix nec-enc build on older architectures
authorChristian Lamparter <chunkeey@gmail.com>
Sat, 6 Apr 2019 18:29:35 +0000 (20:29 +0200)
committerChristian Lamparter <chunkeey@gmail.com>
Sat, 6 Apr 2019 18:29:35 +0000 (20:29 +0200)
commitd2140bf0f2280bb3a0a31c7c3f5225b7787016b3
tree0cd34f90e8c894eea9aeb80ddb529f18b0f89b78
parent3a721700768d74014d955e727f41ccfabaf757a1
firmware-utils: fix nec-enc build on older architectures

This patch enable gnu99 mode for the nec-enc utility which
fixes the following build-breaking errors on some older
architectures.

nec-enc.c: In function ‘xor_data’:
nec-enc.c:34:2: error: ‘for’ loop initial declarations are only allowed in C99 or C11 mode
  for (int i = 0; i < len; i++) {
  ^~~
nec-enc.c:34:2: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
nec-enc.c: In function ‘main’:
nec-enc.c:101:3: error: ‘for’ loop initial declarations are only allowed in C99 or C11 mode
   for (int i = 0; i < n; i++) {
   ^~~

Spotted-By: Buildbot
Fixes: fac27643f057 ("firmware-utils: add nec-enc")
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Makefile