diff options
author | 2019-09-24 12:30:00 +0000 | |
---|---|---|
committer | 2019-09-24 12:30:00 +0000 | |
commit | 5fb9eef93de48a9cb70d098d9cd2d954b9da48e7 (patch) | |
tree | 82eba71d54840779790383fb61d5b55061e91864 | |
parent | vmd(8): fix memory leak in virtio network TX path. (diff) | |
download | wireguard-openbsd-5fb9eef93de48a9cb70d098d9cd2d954b9da48e7.tar.xz wireguard-openbsd-5fb9eef93de48a9cb70d098d9cd2d954b9da48e7.zip |
Use consistent names for unused flags/quirks when printing same under
SCSIDEBUG.
-rw-r--r-- | sys/scsi/scsiconf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c index dd2da1e61a6..b0031860c17 100644 --- a/sys/scsi/scsiconf.c +++ b/sys/scsi/scsiconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.c,v 1.214 2019/09/23 15:21:17 krw Exp $ */ +/* $OpenBSD: scsiconf.c,v 1.215 2019/09/24 12:30:00 krw Exp $ */ /* $NetBSD: scsiconf.c,v 1.57 1996/05/02 01:09:01 neil Exp $ */ /* @@ -724,10 +724,10 @@ const char *quirknames[16] = { "NOSYNC", "NOWIDE", "NOTAGS", - "QUIRKx0010", - "QUIRKx0020", - "QUIRKx0040", - "QUIRKx0080", + "QUIRK0x0010", + "QUIRK0x0020", + "QUIRK0x0040", + "QUIRK0x0080", "NOSYNCCACHE", "NOSENSE", "LITTLETOC", @@ -735,7 +735,7 @@ const char *quirknames[16] = { "QUIRK0x1000", "NODOORLOCK", "ONLYBIG", - "QUIRKx8000", + "QUIRK0x8000", }; #endif /* SCSIDEBUG */ |