Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/sys s/{ }/{ 0 }/g
details: https://anonhg.NetBSD.org/src/rev/bf68f5c2eb62
branches: trunk
changeset: 538588:bf68f5c2eb62
user: christos <christos%NetBSD.org@localhost>
date: Wed Oct 23 01:06:54 2002 +0000
description:
s/{ }/{ 0 }/g
diffstat:
sys/sys/device.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r b9b669a8103f -r bf68f5c2eb62 sys/sys/device.h
--- a/sys/sys/device.h Wed Oct 23 01:06:11 2002 +0000
+++ b/sys/sys/device.h Wed Oct 23 01:06:54 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: device.h,v 1.62 2002/10/20 02:27:01 isaki Exp $ */
+/* $NetBSD: device.h,v 1.63 2002/10/23 01:06:54 christos Exp $ */
/*
* Copyright (c) 1996, 2000 Christopher G. Demetriou
@@ -155,7 +155,7 @@
#define EVCNT_INITIALIZER(type, parent, group, name) \
{ \
0, /* ev_count */ \
- { }, /* ev_list */ \
+ { 0 }, /* ev_list */ \
type, /* ev_type */ \
0, /* ev_grouplen */ \
0, /* ev_namelen */ \
@@ -237,7 +237,7 @@
#define CFATTACH_DECL(name, ddsize, matfn, attfn, detfn, actfn) \
struct cfattach __CONCAT(name,_ca) = { \
- ___STRING(name), { }, ddsize, matfn, attfn, detfn, actfn \
+ ___STRING(name), { 0 }, ddsize, matfn, attfn, detfn, actfn \
}
/* Flags given to config_detach(), and the ca_detach function. */
@@ -257,7 +257,7 @@
#define CFDRIVER_DECL(name, class, attrs) \
struct cfdriver __CONCAT(name,_cd) = { \
- { }, { }, NULL, ___STRING(name), class, 0, attrs \
+ { 0 }, { 0 }, NULL, ___STRING(name), class, 0, attrs \
}
/*
Home |
Main Index |
Thread Index |
Old Index