From 68d7ffb696a13b1550fd839dff0d56a3f2145073 Mon Sep 17 00:00:00 2001 From: Brad House Date: Sun, 4 Aug 2024 19:23:31 -0400 Subject: [PATCH] clang-format --- src/lib/ares_android.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/ares_android.c b/src/lib/ares_android.c index 06ab8940..a8284c1e 100644 --- a/src/lib/ares_android.c +++ b/src/lib/ares_android.c @@ -84,9 +84,9 @@ static jmethodID jni_get_method_id(JNIEnv *env, jclass cls, static int jvm_attach(JNIEnv **env) { - char name[17] = {0}; + char name[17] = { 0 }; - JavaVMAttachArgs args; + JavaVMAttachArgs args; args.version = JNI_VERSION_1_6; if (prctl(PR_GET_NAME, name) == 0) { @@ -94,7 +94,7 @@ static int jvm_attach(JNIEnv **env) } else { args.name = NULL; } - args.group = NULL; + args.group = NULL; return (*android_jvm)->AttachCurrentThread(android_jvm, env, &args); }