diff options
Diffstat (limited to 'source/com_local.h')
-rw-r--r-- | source/com_local.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/com_local.h b/source/com_local.h index d7b0a2c..9e8be04 100644 --- a/source/com_local.h +++ b/source/com_local.h @@ -1036,8 +1036,8 @@ void Sys_SetClipboardData( const char *data ); void Sys_Sleep( int msec ); void Sys_Setenv( const char *name, const char *value ); -void Hunk_Begin( mempool_t *pool, int maxsize ); -void *Hunk_Alloc( mempool_t *pool, int size ); +void Hunk_Begin( mempool_t *pool, size_t maxsize ); +void *Hunk_Alloc( mempool_t *pool, size_t size ); void Hunk_Free( mempool_t *pool ); void Sys_Init( void ); |