Commit 389c51f4 authored by Hyeonseok Oh's avatar Hyeonseok Oh

Remove some unnecessary parentheses

parent 9c9747fe
......@@ -110,7 +110,7 @@ ut_align_down(
ut_ad(sizeof(void*) == sizeof(ulint));
return((void*)((((ulint) ptr)) & ~(align_no - 1)));
return((void*)(((ulint) ptr) & ~(align_no - 1)));
}
/*********************************************************//**
......
......@@ -110,7 +110,7 @@ ut_align_down(
ut_ad(sizeof(void*) == sizeof(ulint));
return((void*)((((ulint) ptr)) & ~(align_no - 1)));
return((void*)(((ulint) ptr) & ~(align_no - 1)));
}
/*********************************************************//**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment