You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by dr...@apache.org on 2001/08/12 15:13:55 UTC

cvs commit: apr/shmem/beos shmem.c

dreid       01/08/12 06:13:55

  Modified:    shmem/beos shmem.c
  Log:
  Peter Moore reported this small typo...
  
  Revision  Changes    Path
  1.5       +1 -1      apr/shmem/beos/shmem.c
  
  Index: shmem.c
  ===================================================================
  RCS file: /home/cvs/apr/shmem/beos/shmem.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- shmem.c	2001/08/10 21:04:48	1.4
  +++ shmem.c	2001/08/12 13:13:55	1.5
  @@ -242,7 +242,7 @@
       return APR_SUCCESS;
   }
   
  -APR_DEClARE(void *) apr_shm_malloc(struct shmem_t *m, apr_size_t reqsize)
  +APR_DECLARE(void *) apr_shm_malloc(struct shmem_t *m, apr_size_t reqsize)
   {
       struct block_t *b;
       if ((b = alloc_block(m, reqsize)) != NULL)