File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9340,7 +9340,7 @@ _get_Sony_FocusMagnifySetting(CONFIG_GET_ARGS) {
9340
9340
gp_widget_set_name (* widget , menu -> name );
9341
9341
9342
9342
currentVal = dpd -> CurrentValue .u64 ;
9343
- x = (int )(currentVal >> 16 & 0xffff );
9343
+ x = (int )(( currentVal >> 16 ) & 0xffff );
9344
9344
y = (int )(currentVal & 0xffff );
9345
9345
9346
9346
// Current magnification level
@@ -9389,7 +9389,7 @@ _put_Sony_FocusMagnifySetting(CONFIG_PUT_ARGS)
9389
9389
uint64_t currentVal ;
9390
9390
9391
9391
currentVal = dpd -> CurrentValue .u64 ;
9392
- x = (int )(currentVal >> 16 & 0xffff );
9392
+ x = (int )(( currentVal >> 16 ) & 0xffff );
9393
9393
y = (int )(currentVal & 0xffff );
9394
9394
9395
9395
CR (gp_widget_get_value (widget , & xval ));
@@ -9442,7 +9442,7 @@ _put_Sony_SpotFocusArea(CONFIG_PUT_ARGS) {
9442
9442
// Camera must be set to an autofocus mode and focusarea has to be set to one of the Spot Focus modes
9443
9443
9444
9444
currentVal = dpd -> CurrentValue .u32 ;
9445
- x = (int )(currentVal >> 16 & 0xffff );
9445
+ x = (int )(( currentVal >> 16 ) & 0xffff );
9446
9446
y = (int )(currentVal & 0xffff );
9447
9447
9448
9448
CR (gp_widget_get_value (widget , & xval ));
You can’t perform that action at this time.
0 commit comments