sansapatcher, ipodpatcher: use MinGW C99 version of stdio functions.
The MinGW versions know additional format identifiers. Use those versions to avoid warnings. See also http://article.gmane.org/gmane.comp.gnu.mingw.user/27539/ git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31331 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6c6123143f
commit
70837fb1ed
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
|||
# $Id$
|
||||
#
|
||||
|
||||
CFLAGS += -Wall -W
|
||||
CFLAGS += -Wall -W -D__USE_MINGW_ANSI_STDIO=1
|
||||
|
||||
# Build with "make BOOTOBJS=1" to build with embedded bootloaders and the
|
||||
# --install option and interactive mode. You need the full set of Rockbox
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# \/ \/ \/ \/ \/
|
||||
|
||||
TARGET_DIR ?= $(shell pwd)/
|
||||
CFLAGS += -Wall -W -D_LARGEFILE64_SOURCE
|
||||
CFLAGS += -Wall -W -D_LARGEFILE64_SOURCE -D__USE_MINGW_ANSI_STDIO=1
|
||||
|
||||
OUTPUT = sansapatcher
|
||||
|
||||
|
|
Loading…
Reference in a new issue