svn commit: r339912 - head/lib/csu/tests
Andrew Turner
andrew at FreeBSD.org
Tue Oct 30 10:16:22 UTC 2018
Author: andrew
Date: Tue Oct 30 10:16:21 2018
New Revision: 339912
URL: https://svnweb.freebsd.org/changeset/base/339912
Log:
Fix the location of the static keyword.
MFC with: r339738
Sponsored by: DARPA, AFRL
Modified:
head/lib/csu/tests/init_test.c
Modified: head/lib/csu/tests/init_test.c
==============================================================================
--- head/lib/csu/tests/init_test.c Tue Oct 30 10:02:23 2018 (r339911)
+++ head/lib/csu/tests/init_test.c Tue Oct 30 10:16:21 2018 (r339912)
@@ -60,7 +60,7 @@ volatile int init_array_state = -1;
void _Jv_RegisterClasses(const func_ptr *);
-__section(".jcr") __used func_ptr static jcr_func = (func_ptr)1;
+__section(".jcr") __used static func_ptr jcr_func = (func_ptr)1;
const void *jcr_func_ptr = &jcr_func;
void
More information about the svn-src-all
mailing list