diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2008-07-30 21:30:33 +0000 |
---|---|---|
committer | Flavio Cruz <flaviocruz@gmail.com> | 2008-07-30 21:30:33 +0000 |
commit | 8ed73383fa2fa823a9adeaf2c46ef7efbc6b632e (patch) | |
tree | 69a4de16f81dedf1dba725b9bbf8c95d400339bb /libs/round-page.c | |
parent | ea0d1818732b75a5a3dd24f911946984b8fc831d (diff) |
Use the GNU Coding Style.
Diffstat (limited to 'libs/round-page.c')
-rw-r--r-- | libs/round-page.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/round-page.c b/libs/round-page.c index 15af2d297..b2daaf445 100644 --- a/libs/round-page.c +++ b/libs/round-page.c @@ -2,7 +2,7 @@ #include <mach/vm_param.h> vm_offset_t -helper_round_page(vm_offset_t address) +helper_round_page (vm_offset_t address) { - return round_page(address); + return round_page (address); } |