commit | 8ff3886ff704c39cbcb94b74adc2cdd158a45fa9 | [log] [tgz] |
---|---|---|
author | Juan Yescas <jyescas@google.com> | Sun Aug 20 17:05:31 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Sun Aug 20 17:05:31 2023 +0000 |
tree | 435cb982d762556391fa74c7e5df88379ca86662 | |
parent | 4c562594d9e159b467cd2fc8868a6c2b3fb4448f [diff] | |
parent | 0bd4117f3f61bb2dbded71d386cfa07d3515d9e2 [diff] |
Merge "bionic: Fix typo in the argument passed to getauxval()" into main
diff --git a/libc/platform/bionic/page.h b/libc/platform/bionic/page.h index 15ad4c5..65faba4 100644 --- a/libc/platform/bionic/page.h +++ b/libc/platform/bionic/page.h
@@ -27,7 +27,7 @@ #if defined(PAGE_SIZE) return PAGE_SIZE; #else - static const size_t page_size = getauxval(PAGE_SIZE); + static const size_t page_size = getauxval(AT_PAGESZ); return page_size; #endif }