diff options
| author | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2012-06-14 18:57:24 +0100 |
|---|---|---|
| committer | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2012-06-14 18:57:24 +0100 |
| commit | a8df98c6fb07b8ddff18a01d7f2f607d9493dd7c (patch) | |
| tree | 508aa2bdd6278e967ce4122c37a6a7d9a77bdad5 /src/pool.c | |
| parent | a21bb1aa33e9887c06852db62526895df6091736 (diff) | |
| download | libgit2-a8df98c6fb07b8ddff18a01d7f2f607d9493dd7c.tar.gz | |
Updates from comments on OS4 compatibility pull request http://github.com/libgit2/libgit2/pull/766
Diffstat (limited to 'src/pool.c')
| -rw-r--r-- | src/pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pool.c b/src/pool.c index c5414b3b6..63bf09cee 100644 --- a/src/pool.c +++ b/src/pool.c @@ -276,7 +276,7 @@ uint32_t git_pool__system_page_size(void) GetSystemInfo(&info); size = (uint32_t)info.dwPageSize; #elif defined(__amigaos4__) - size = (uint32_t)1000000; // random value + size = (uint32_t)4096; /* 4K as there is no global value we can query */ #else size = (uint32_t)sysconf(_SC_PAGE_SIZE); #endif |
