From 89859ee20a8ee164354b6270e13fb6a31ce399f2 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Sun, 7 Jul 2024 10:24:24 +0800 Subject: [PATCH] * src/androidvfs.c (android_saf_check_nonnull): Fix typo. (cherry picked from commit 8589fd9cae2fbff8bf8eddd055fc1e60fa0df6f2) --- src/androidvfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/androidvfs.c b/src/androidvfs.c index 2427708be34..833c6b1b2a7 100644 --- a/src/androidvfs.c +++ b/src/androidvfs.c @@ -3168,7 +3168,7 @@ android_saf_exception_check (int n, ...) Value is 1 if it be NULL, 0 otherwise. */ static int -android_saf_check_nonnull (jobject object, int n, ...) +android_saf_check_nonnull (const void *object, int n, ...) { va_list ap; -- 2.39.2