Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 May 2015 15:38:43 +0000 (UTC)
From:      John-Mark Gurney <jmg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r283249 - head/sys/sys
Message-ID:  <201505211538.t4LFchbJ064686@svn.freebsd.org>

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



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