svn commit: r283249 - head/sys/sys

John-Mark Gurney jmg at FreeBSD.org
Thu May 21 15:38:44 UTC 2015


Author: jmg
Date: Thu May 21 15:38:43 2015
New Revision: 283249
URL: https://svnweb.freebsd.org/changeset/base/283249

Log:
  remove stray ; that came in r272673...

Modified:
  head/sys/sys/systm.h

Modified: head/sys/sys/systm.h
==============================================================================
--- head/sys/sys/systm.h	Thu May 21 15:16:18 2015	(r283248)
+++ head/sys/sys/systm.h	Thu May 21 15:38:43 2015	(r283249)
@@ -237,7 +237,7 @@ void	hexdump(const void *ptr, int length
 #define ovbcopy(f, t, l) bcopy((f), (t), (l))
 void	bcopy(const void *from, void *to, size_t len) __nonnull(1) __nonnull(2);
 void	bzero(void *buf, size_t len) __nonnull(1);
-void	explicit_bzero(void *, size_t) __nonnull(1);;
+void	explicit_bzero(void *, size_t) __nonnull(1);
 
 void	*memcpy(void *to, const void *from, size_t len) __nonnull(1) __nonnull(2);
 void	*memmove(void *dest, const void *src, size_t n) __nonnull(1) __nonnull(2);


More information about the svn-src-head mailing list