]> granicus.if.org Git - strace/commit
mips64: fix PRI__64 macro definition when compiled for Android
authorLazar Trsic <Lazar.Trsic@imgtec.com>
Mon, 10 Jul 2017 15:05:44 +0000 (17:05 +0200)
committerDmitry V. Levin <ldv@altlinux.org>
Thu, 13 Jul 2017 21:15:21 +0000 (21:15 +0000)
commit5c34fd9162419552fe88862c0035fba534714b5b
tree5b030bae8122caeaffc3aa8bd45b26841534739b
parent07eae54d08627ff61f951f75f1b32d7f858b3d7f
mips64: fix PRI__64 macro definition when compiled for Android

By default for MIPS64 in Android __u64 type is exported
as unsigned long long.  This caused compilation -Wformat warnings
and would break the build if -Werror is used.

* defs.h [SIZEOF_LONG != 4 && MIPS && __ANDROID__] (PRI__64): Change
from "l" to "ll".
defs.h