-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
This simply fixes typos, i.e., '||' was misused in place of '<<'.
Jung-uk Kim
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2
iQEcBAEBCAAGBQJVA084AAoJEHyflib82/FGYHwH/2vLGGMlPkqZtcORujo1fIf4
egkkFEb7YeQuSLl8oIRH0qWxd5dbYM/L5FlatEq8iRF2wKwmmCXyzWwGaDa3moWN
9SnC6dM69YtQPSZYd3c2z71yYDHIsixYt4XT9rScxluZDdVeUe7ukys6NSlLjL+f
u0YvkXbVuWK/gyhrI6KVvvxe+NJ7KJtrt/+uIHfX1pScDxQ7pAIoYtY+KofnzYzG
45nIXRTR/mI2fcq4+UH8Dd/XVamZhIeBXBi6XXLx2Ov8T8KSc1uZCcKOtd3T6SiV
5PDg6fkyyuz0Lsb2uUmYVdQuaJJosi3LavLaZ1paBsVFRbPDicFrM7nfaSpjsRM=
=bg0g
-----END PGP SIGNATURE-----
Index: src/VBox/Devices/Storage/DevAHCI.cpp
===================================================================
--- src/VBox/Devices/Storage/DevAHCI.cpp (revision 54716)
+++ src/VBox/Devices/Storage/DevAHCI.cpp (working copy)
@@ -3333,7 +3333,7 @@ static size_t atapiGetConfigurationFillFeatureList
return 0;
ataH2BE_U16(pbBuf, 0x0); /* feature 0: list of profiles supported */
- pbBuf[2] = (0 << 2) | (1 << 1) | (1 || 0); /* version 0, persistent, current */
+ pbBuf[2] = (0 << 2) | (1 << 1) | (1 << 0); /* version 0, persistent, current */
pbBuf[3] = 8; /* additional bytes for profiles */
/* The MMC-3 spec says that DVD-ROM read capability should be reported
* before CD-ROM read capability. */
Index: src/VBox/Devices/Storage/DevATA.cpp
===================================================================
--- src/VBox/Devices/Storage/DevATA.cpp (revision 54716)
+++ src/VBox/Devices/Storage/DevATA.cpp (working copy)
@@ -2485,7 +2485,7 @@ static uint32_t atapiGetConfigurationFillFeatureLi
return 0;
ataH2BE_U16(pbBuf, 0x0); /* feature 0: list of profiles supported */
- pbBuf[2] = (0 << 2) | (1 << 1) | (1 || 0); /* version 0, persistent, current */
+ pbBuf[2] = (0 << 2) | (1 << 1) | (1 << 0); /* version 0, persistent, current */
pbBuf[3] = 8; /* additional bytes for profiles */
/* The MMC-3 spec says that DVD-ROM read capability should be reported
* before CD-ROM read capability. */
_______________________________________________
vbox-dev mailing list
[email protected]
https://www.virtualbox.org/mailman/listinfo/vbox-dev