svn commit: r276340 - head/sys/arm/include

Ian Lepore ian at FreeBSD.org
Sun Dec 28 19:05:33 UTC 2014


Author: ian
Date: Sun Dec 28 19:05:32 2014
New Revision: 276340
URL: https://svnweb.freebsd.org/changeset/base/276340

Log:
  Fix a "decl is not a prototype" error noticed by gcc (but not clang).

Modified:
  head/sys/arm/include/cpu-v6.h

Modified: head/sys/arm/include/cpu-v6.h
==============================================================================
--- head/sys/arm/include/cpu-v6.h	Sun Dec 28 19:03:29 2014	(r276339)
+++ head/sys/arm/include/cpu-v6.h	Sun Dec 28 19:05:32 2014	(r276340)
@@ -224,7 +224,7 @@ tlb_flush_all(void)
 }
 
 static __inline void
-tlb_flush_all_ng()
+tlb_flush_all_ng(void)
 {
 
 	dsb();


More information about the svn-src-all mailing list