mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-28 20:11:00 +01:00
Try number two. Add missing paren in MSG_IDENTIFY macro.
This commit is contained in:
parent
0a42ab8379
commit
1e03c19aab
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18784
@ -26,7 +26,7 @@
|
||||
|
||||
/* Identify message */ /* M/M */
|
||||
#define MSG_IDENTIFYFLAG 0x80
|
||||
#define MSG_IDENTIFY(lun, disc) ((disc) ? 0xc0 : MSG_IDENTIFYFLAG) | (lun))
|
||||
#define MSG_IDENTIFY(lun, disc) (((disc) ? 0xc0 : MSG_IDENTIFYFLAG) | (lun))
|
||||
#define MSG_ISIDENTIFY(m) ((m) & MSG_IDENTIFYFLAG)
|
||||
|
||||
/* Extended messages (opcode and length) */
|
||||
|
Loading…
Reference in New Issue
Block a user