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
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to