Module Name:    src
Committed By:   jakllsch
Date:           Thu May 19 02:37:41 UTC 2011

Modified Files:
        src/sys/arch/vax/boot/boot: netio.c

Log Message:
Specify that the sock argument of socktodesc() is an int,
instead of letting it default to int.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/vax/boot/boot/netio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/vax/boot/boot/netio.c
diff -u src/sys/arch/vax/boot/boot/netio.c:1.15 src/sys/arch/vax/boot/boot/netio.c:1.16
--- src/sys/arch/vax/boot/boot/netio.c:1.15	Mon Oct 26 19:16:58 2009
+++ src/sys/arch/vax/boot/boot/netio.c	Thu May 19 02:37:41 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: netio.c,v 1.15 2009/10/26 19:16:58 cegger Exp $	*/
+/*	$NetBSD: netio.c,v 1.16 2011/05/19 02:37:41 jakllsch Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -94,7 +94,7 @@
 static int inited = 0;
 
 struct iodesc *
-socktodesc(sock)
+socktodesc(int sock)
 {
 	return &desc;
 }

Reply via email to