Try number two. Add missing paren in MSG_IDENTIFY macro.

This commit is contained in:
Justin T. Gibbs 1996-10-07 03:53:43 +00:00
parent 0a42ab8379
commit 1e03c19aab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18784

View File

@ -26,7 +26,7 @@
/* Identify message */ /* M/M */ /* Identify message */ /* M/M */
#define MSG_IDENTIFYFLAG 0x80 #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) #define MSG_ISIDENTIFY(m) ((m) & MSG_IDENTIFYFLAG)
/* Extended messages (opcode and length) */ /* Extended messages (opcode and length) */