From 4b94522c140f5d9e3740af029858d886ead3e539 Mon Sep 17 00:00:00 2001 From: Nate Myren Date: Tue, 14 Nov 2023 15:28:57 -0800 Subject: [PATCH] Move ; in NDK declaration per comment on aosp/2796861, it should be at the end of the line Bug: 291814949 Test: presubmit Change-Id: Ib104d6764791b7a2507e371d955cbd8e69e3ccdc --- libc/include/sys/_system_properties.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/include/sys/_system_properties.h b/libc/include/sys/_system_properties.h index 30dea89bd..079c82577 100644 --- a/libc/include/sys/_system_properties.h +++ b/libc/include/sys/_system_properties.h @@ -139,7 +139,7 @@ int __system_properties_init(void); * Returns 0 on success, -1 if the system properties failed to re-initialize (same conditions as * __system properties_init) */ -int __system_properties_zygote_reload(void); __INTRODUCED_IN(__ANDROID_API_V__) +int __system_properties_zygote_reload(void) __INTRODUCED_IN(__ANDROID_API_V__); /* Deprecated: use __system_property_wait instead. */ uint32_t __system_property_wait_any(uint32_t __old_serial);