From 71a3fb3faadb79c2ccff8f23f0520e4015f547f3 Mon Sep 17 00:00:00 2001 From: Aaron Luft Date: Fri, 17 Apr 2020 11:30:12 -0400 Subject: Android: fixes unknown warning option from ndk build A command line option is not correct. Fix by spelling the option correctly. BEFORE [x86] Compile : xusb <= xusb.c warning: unknown warning option '-Werror=unintialized'; did you mean '-Werror=uninitialized'? [-Wunknown-warning-option] AFTER [x86] Compile : xusb <= xusb.c [x86] Executable : xusb [x86] Install : xusb => libs/x86/xusb --- android/jni/Application.mk | 2 +- libusb/version_nano.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/android/jni/Application.mk b/android/jni/Application.mk index 12e57d1..c113726 100644 --- a/android/jni/Application.mk +++ b/android/jni/Application.mk @@ -32,7 +32,7 @@ APP_CFLAGS := \ -Werror=missing-prototypes \ -Werror=strict-prototypes \ -Werror=undef \ - -Werror=unintialized + -Werror=uninitialized # Workaround for MIPS toolchain linker being unable to find liblog dependency # of shared object in NDK versions at least up to r9. diff --git a/libusb/version_nano.h b/libusb/version_nano.h index 383d63e..98829f4 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11498 +#define LIBUSB_NANO 11499 -- cgit v1.2.1