]> granicus.if.org Git - apache/commitdiff
fix typo
authorJim Jagielski <jim@apache.org>
Tue, 12 May 2009 19:23:24 +0000 (19:23 +0000)
committerJim Jagielski <jim@apache.org>
Tue, 12 May 2009 19:23:24 +0000 (19:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@774041 13f79535-47bb-0310-9956-ffa450edef68

modules/mem/mod_sharedmem.c

index 76b2026ba3f65c01f67a169567c6de8fc1decff7..322d6db76c5f9f47d37969f0174c1647e0d91c59 100644 (file)
@@ -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;
 }