aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiomidis Spinellis <dds@FreeBSD.org>2006-06-02 09:08:51 +0000
committerDiomidis Spinellis <dds@FreeBSD.org>2006-06-02 09:08:51 +0000
commit809f920d59bbf052ee7c565e127790fa37239f56 (patch)
treecac27b44c99551257160185735725a4f20dea3bd
parentb971a73040da990bdffd97480f3b060e4513969d (diff)
Notes
-rw-r--r--sys/netgraph/atm/uni/ng_uni_cust.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netgraph/atm/uni/ng_uni_cust.h b/sys/netgraph/atm/uni/ng_uni_cust.h
index c2f23256312e..cf9d3549db5b 100644
--- a/sys/netgraph/atm/uni/ng_uni_cust.h
+++ b/sys/netgraph/atm/uni/ng_uni_cust.h
@@ -140,11 +140,11 @@ extern size_t unimem_sizes[UNIMEM_TYPES];
#define UNICORE \
size_t unimem_sizes[UNIMEM_TYPES] = { \
- [UNIMEM_INS] sizeof(struct uni), \
- [UNIMEM_ALL] sizeof(struct uni_all), \
- [UNIMEM_SIG] sizeof(struct sig), \
- [UNIMEM_CALL] sizeof(struct call), \
- [UNIMEM_PARTY] sizeof(struct party) \
+ [UNIMEM_INS] = sizeof(struct uni), \
+ [UNIMEM_ALL] = sizeof(struct uni_all), \
+ [UNIMEM_SIG] = sizeof(struct sig), \
+ [UNIMEM_CALL] = sizeof(struct call), \
+ [UNIMEM_PARTY] = sizeof(struct party) \
};
#define memmove(T, F, L) bcopy((F), (T), (L))