genunifont: avoid format-security compiler warning
authorDetlef Riekenberg <wine.dev@web.de>
Sun, 7 Oct 2012 21:55:42 +0000 (23:55 +0200)
committerDavid Herrmann <dh.herrmann@googlemail.com>
Mon, 8 Oct 2012 15:30:36 +0000 (17:30 +0200)
commitf92a445957aa71f8a74c1692cdbaa57f609b570c
tree54b20595e26bd1ad33f795f68f92efa63fafeddd
parent158b5fcbaced56479b2d370a68e770506f0df5d3
genunifont: avoid format-security compiler warning

Current warning without the patch:
src/genunifont.c: In function 'print_data_row':
src/genunifont.c:85:3: warning: format not a string literal and no format arguments [-Wformat-security]
src/genunifont.c:88:3: warning: format not a string literal and no format arguments [-Wformat-security]

We use fputs() to avoid any format-string parsing and instead directly
write the string into the file.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
src/genunifont.c