diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-05-12 20:20:36 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-05-12 20:20:36 +0000 |
commit | 343042eb8d7fde876cbb333fdb89c7eef796f3a0 (patch) | |
tree | 1fd656272752a113412384249917a737fb32b6ad /sys/arch/sparc64/dev/vdsk.c | |
parent | 5a37f9c8e21de3f819bda06d5ec9d6a31c3036d2 (diff) |
Make reserved member of protocol struct start with underscore.
Diffstat (limited to 'sys/arch/sparc64/dev/vdsk.c')
-rw-r--r-- | sys/arch/sparc64/dev/vdsk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/vdsk.c b/sys/arch/sparc64/dev/vdsk.c index 3478c3fd93f..7847c6e6415 100644 --- a/sys/arch/sparc64/dev/vdsk.c +++ b/sys/arch/sparc64/dev/vdsk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vdsk.c,v 1.11 2009/05/10 12:59:12 kettenis Exp $ */ +/* $OpenBSD: vdsk.c,v 1.12 2009/05/12 20:20:35 kettenis Exp $ */ /* * Copyright (c) 2009 Mark Kettenis * @@ -53,7 +53,7 @@ struct vd_attr_info { uint64_t operations; uint64_t vdisk_size; uint64_t max_xfer_sz; - uint64_t reserved2[2]; + uint64_t _reserved2[2]; }; #define VD_DISK_TYPE_SLICE 0x01 |