gdrcopy
gdrcopy copied to clipboard
Fix minor readability issue in gdr_open
Helpfully hinted by Clang: & has lower precedence than ==; == will be evaluated first.
The result is the same: (ps_tmp) & (0x1 == 1) is ps_tmp & 1 is (ps_tmp & 0x1) == 1, but the current form looks dangerously misleading.