firmware-utils: mkdlinkfw: fix build
authorMathias Kresin <dev@kresin.me>
Sun, 13 Jan 2019 18:28:54 +0000 (19:28 +0100)
committerMathias Kresin <dev@kresin.me>
Sun, 13 Jan 2019 18:28:54 +0000 (19:28 +0100)
commitc5cfe7552ad5f2f3f64bf41eeb38479774a24fa8
treedd200c720e5172f0ca1db39c8584e2b7e1701131
parentb90b42b52b7c5538d58b51564f8eae4dbcc8c9b9
firmware-utils: mkdlinkfw: fix build

While we don't need the gnu99 option anymore, we still need to force the
c99 standard to fix the following build error on the build bots:

src/mkdlinkfw.c: In function 'find_auh_headers':
src/mkdlinkfw.c:267:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
   for (int i = 0; i < header_counter; i++) {
   ^
src/mkdlinkfw.c:267:3: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code

Signed-off-by: Mathias Kresin <dev@kresin.me>
Makefile