Skip to content

Commit 389c51f

Browse files
committed
Remove some unnecessary parentheses
1 parent 9c9747f commit 389c51f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

storage/innobase/include/ut0byte.ic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ ut_align_down(
110110

111111
ut_ad(sizeof(void*) == sizeof(ulint));
112112

113-
return((void*)((((ulint) ptr)) & ~(align_no - 1)));
113+
return((void*)(((ulint) ptr) & ~(align_no - 1)));
114114
}
115115

116116
/*********************************************************//**

storage/xtradb/include/ut0byte.ic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ ut_align_down(
110110

111111
ut_ad(sizeof(void*) == sizeof(ulint));
112112

113-
return((void*)((((ulint) ptr)) & ~(align_no - 1)));
113+
return((void*)(((ulint) ptr) & ~(align_no - 1)));
114114
}
115115

116116
/*********************************************************//**

0 commit comments

Comments
 (0)