add a few missing casts

This commit is contained in:
Lennart Poettering 2008-08-20 03:33:06 +03:00
parent a3e57da0f0
commit dc9b8dce30
7 changed files with 20 additions and 20 deletions

View file

@ -2041,7 +2041,7 @@ void *pa_will_need(const void *p, size_t l) {
return (void*) p;
}
bs = PA_PAGE_ALIGN(rlim.rlim_cur);
bs = PA_PAGE_ALIGN((size_t) rlim.rlim_cur);
#else
bs = PA_PAGE_SIZE*4;
#endif