1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

Remove some unnecessary parentheses

This commit is contained in:
Hyeonseok Oh
2016-05-26 10:33:17 +00:00
parent 9c9747fed3
commit 389c51f4bd
2 changed files with 2 additions and 2 deletions

View File

@@ -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)));
}
/*********************************************************//**

View File

@@ -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)));
}
/*********************************************************//**