From: Jim Jagielski Date: Tue, 12 May 2009 19:23:24 +0000 (+0000) Subject: fix typo X-Git-Tag: 2.3.3~623 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba76449ec7ece16d67d739dcd0e3704e942e0ba0;p=apache fix typo git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@774041 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mem/mod_sharedmem.c b/modules/mem/mod_sharedmem.c index 76b2026ba3..322d6db76c 100644 --- a/modules/mem/mod_sharedmem.c +++ b/modules/mem/mod_sharedmem.c @@ -472,7 +472,7 @@ static apr_status_t slotmem_put(ap_slotmem_t *slot, unsigned int id, unsigned ch } memcpy(ptr, src, src_len); /* bounds check? */ /* We know the id fit it */ - inuse = (slot->base + (slot->size * slot->num); + inuse = (slot->base + (slot->size * slot->num)); inuse[id] = 1; return APR_SUCCESS; }