In C, foo() isn't a function with no arguments, foo(void) is.

svn path=/trunk/; revision=32422
This commit is contained in:
Guy Harris 2010-04-08 02:26:56 +00:00
parent 1426281ebd
commit 60d5efc2a3
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ emem_scrub_memory(char *buf, size_t size, gboolean alloc)
}
static emem_chunk_t *
emem_create_chunk() {
emem_create_chunk(void) {
#if defined (_WIN32)
BOOL ret;
char *buf_end, *prot1, *prot2;