diff options
author | jtang12 <jtang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-11-02 05:01:08 +0000 |
---|---|---|
committer | jtang12 <jtang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-11-02 05:01:08 +0000 |
commit | 1723b2e2b2c1e50c9910f2043bb3f349bdcc45e6 (patch) | |
tree | 8ccc370e756406e0bc675bb48206cd98bbf38aaf /EdkModulePkg | |
parent | 6b039a51452527f35520922b40dd4226243d3f94 (diff) | |
download | edk2-platforms-1723b2e2b2c1e50c9910f2043bb3f349bdcc45e6.tar.xz |
Change #define bit(a) 1 << (a)
to #define bit(a) (1 << (a))
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1885 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkModulePkg')
-rw-r--r-- | EdkModulePkg/Bus/Pci/AtapiPassThru/Dxe/AtapiPassThru.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/EdkModulePkg/Bus/Pci/AtapiPassThru/Dxe/AtapiPassThru.h b/EdkModulePkg/Bus/Pci/AtapiPassThru/Dxe/AtapiPassThru.h index 659b37c876..fda5736878 100644 --- a/EdkModulePkg/Bus/Pci/AtapiPassThru/Dxe/AtapiPassThru.h +++ b/EdkModulePkg/Bus/Pci/AtapiPassThru/Dxe/AtapiPassThru.h @@ -21,7 +21,7 @@ ///
/// bit definition
///
-#define bit(a) 1 << (a)
+#define bit(a) (1 << (a))
#define MAX_TARGET_ID 4
|