Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 May 2002 01:18:59 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 12055 for review
Message-ID:  <200205290818.g4T8Ix849158@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=12055

Change 12055 by peter@peter_daintree on 2002/05/29 01:18:40

	Fix a bit more that got out of sync.

Affected files ...

... //depot/projects/ia64/sys/kern/kern_uuid.c#4 edit
... //depot/projects/ia64/usr.bin/uuidgen/Makefile#3 edit
... //depot/projects/ia64/usr.bin/uuidgen/uuidgen.1#3 edit
... //depot/projects/ia64/usr.bin/uuidgen/uuidgen.c#5 edit

Differences ...

==== //depot/projects/ia64/sys/kern/kern_uuid.c#4 (text+ko) ====

@@ -23,7 +23,7 @@
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  *
- * $FreeBSD$
+ * $FreeBSD: src/sys/kern/kern_uuid.c,v 1.1 2002/05/28 06:16:07 marcel Exp $
  */
 
 #include <sys/param.h>

==== //depot/projects/ia64/usr.bin/uuidgen/Makefile#3 (text+ko) ====

@@ -1,5 +1,6 @@
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/uuidgen/Makefile,v 1.1 2002/05/28 06:16:08 marcel Exp $
 
 PROG=	uuidgen
+WARNS?=	4
 
 .include <bsd.prog.mk>

==== //depot/projects/ia64/usr.bin/uuidgen/uuidgen.1#3 (text+ko) ====

@@ -22,7 +22,7 @@
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.bin/uuidgen/uuidgen.1,v 1.1 2002/05/28 06:16:08 marcel Exp $
 .\"
 .Dd May 23, 2002
 .Dt UUIDGEN 1

==== //depot/projects/ia64/usr.bin/uuidgen/uuidgen.c#5 (text+ko) ====

@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/uuidgen/uuidgen.c,v 1.1 2002/05/28 06:16:08 marcel Exp $");
 
 #include <sys/types.h>
 #include <sys/endian.h>
@@ -39,13 +39,14 @@
 #include <unistd.h>
 
 static void
-usage()
+usage(void)
 {
 	(void)fprintf(stderr, "usage: uuidgen [-1] [-n count]\n");
 	exit(1);
 }
 
-void uuid_print(uuid_t *uuid)
+static void
+uuid_print(uuid_t *uuid)
 {
 	printf("%08x-%04x-%04x-%02x%02x-", uuid->time_low, uuid->time_mid,
 	    uuid->time_hi_and_version, uuid->clock_seq_hi_and_reserved,

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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