You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2001/07/01 08:09:49 UTC

cvs commit: apr/locks/unix intraproc.c

jerenkrantz    01/06/30 23:09:49

  Modified:    locks/unix intraproc.c
  Log:
  Pure nitpick - remove whitespace.
  
  Revision  Changes    Path
  1.26      +1 -1      apr/locks/unix/intraproc.c
  
  Index: intraproc.c
  ===================================================================
  RCS file: /home/cvs/apr/locks/unix/intraproc.c,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- intraproc.c	2001/06/29 17:53:33	1.25
  +++ intraproc.c	2001/07/01 06:09:49	1.26
  @@ -80,7 +80,7 @@
   
       new->intraproc = (pthread_mutex_t *)apr_palloc(new->pool, 
                                                      sizeof(pthread_mutex_t));
  -    if (new->intraproc == NULL ) {
  +    if (new->intraproc == NULL) {
           return errno;
       }
       if ((stat = pthread_mutexattr_init(&mattr))) {