Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Oct 2018 10:16:22 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r339912 - head/lib/csu/tests
Message-ID:  <201810301016.w9UAGMOx051594@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810301016.w9UAGMOx051594>