Fix compiler warning in TestPciReadWrite

Use unsigned number for left shift operation. If not specificed as
unsigned, compiler throws warning about left shift of negative
number.

Change-Id: I05948073b0c40700bee69399b08df6031fc49d70
Этот коммит содержится в:
Mukul Joshi
2020-07-13 17:17:35 -04:00
родитель eea1ed8c3d
Коммит 9d24fc9175
+1 -1
Просмотреть файл
@@ -164,7 +164,7 @@ void TestPciReadWrite::Run(void) {
ASSERT_EQ(ret, RSMI_STATUS_INVALID_ARGS);
// First set the bitmask to all supported bandwidths
freq_bitmask = ~(~0 << bw.transfer_rate.num_supported);
freq_bitmask = ~(~0u << bw.transfer_rate.num_supported);
// Then, set the bitmask to all bandwidths besides the initial BW
freq_bitmask ^= (1 << bw.transfer_rate.current);