aboutsummaryrefslogtreecommitdiff
path: root/uts/common/fs/zfs/sys/dnode.h
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2014-08-02 06:49:16 +0000
committerXin LI <delphij@FreeBSD.org>2014-08-02 06:49:16 +0000
commit17e352b011acdda69718763c44d9197645c43877 (patch)
tree9497f616b95ab66188bdbcba0a3c257335df2c60 /uts/common/fs/zfs/sys/dnode.h
parentf0315c58e99f3070a6a1cab2c69e076611e7a1c7 (diff)
downloadsrc-17e352b011acdda69718763c44d9197645c43877.tar.gz
src-17e352b011acdda69718763c44d9197645c43877.zip
Author: Justin T. Gibbs <justing@spectralogic.com>
Date: Fri Aug 1 17:55:38 2014 -0800 5038 Remove "old-style" flexible array usage in ZFS. Reviewed by: Matthew Ahrens <mahrens@delphix.com> Reviewed by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net> Approved by: Richard Lowe <richlowe@richlowe.net> illumos/illumos-gate@7f18da4c54210b682e105b0e7be5195c60f98d20
Notes
Notes: svn path=/vendor-sys/illumos/dist/; revision=269427
Diffstat (limited to 'uts/common/fs/zfs/sys/dnode.h')
-rw-r--r--uts/common/fs/zfs/sys/dnode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/uts/common/fs/zfs/sys/dnode.h b/uts/common/fs/zfs/sys/dnode.h
index 7923a34a82bb..6e4a845a36a1 100644
--- a/uts/common/fs/zfs/sys/dnode.h
+++ b/uts/common/fs/zfs/sys/dnode.h
@@ -245,7 +245,7 @@ typedef struct dnode_handle {
typedef struct dnode_children {
size_t dnc_count; /* number of children */
- dnode_handle_t dnc_children[1]; /* sized dynamically */
+ dnode_handle_t dnc_children[]; /* sized dynamically */
} dnode_children_t;
typedef struct free_range {