diff options
-rw-r--r-- | src/child.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/child.c b/src/child.c index 1ca97dc..b540f3c 100644 --- a/src/child.c +++ b/src/child.c @@ -323,7 +323,7 @@ child_pool_create (void) return -1; } - child_ptr = calloc_shared_memory (child_config.maxclients, + child_ptr = (struct child_s *)calloc_shared_memory (child_config.maxclients, sizeof (struct child_s)); if (!child_ptr) { @@ -331,7 +331,7 @@ child_pool_create (void) return -1; } - servers_waiting = malloc_shared_memory (sizeof (unsigned int)); + servers_waiting = (unsigned int *)malloc_shared_memory (sizeof (unsigned int)); if (servers_waiting == MAP_FAILED) { log_message (LOG_ERR, "Could not allocate memory for child counting."); |