You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dr...@hyperreal.org on 1999/10/16 14:48:00 UTC

cvs commit: apache-2.0/src/lib/apr/inc apr_macro.h

dreid       99/10/16 05:48:00

  Modified:    src/lib/apr/inc apr_macro.h
  Log:
  This fixes a small problem with the macro due to the line length.
  
  Revision  Changes    Path
  1.2       +2 -2      apache-2.0/src/lib/apr/inc/apr_macro.h
  
  Index: apr_macro.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/inc/apr_macro.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- apr_macro.h	1999/10/14 17:38:57	1.1
  +++ apr_macro.h	1999/10/16 12:47:59	1.2
  @@ -66,8 +66,8 @@
   #define SAFETY_LOCK(func_name, name_str) \
       { \
       if (lock_##func_name == NULL) \
  -        if (ap_create_lock(&lock_##func_name, APR_MUTEX, APR_INTRAPROCESS, name_
  -str, NULL) != APR_SUCCESS) \
  +        if (ap_create_lock(&lock_##func_name, APR_MUTEX, APR_INTRAPROCESS, \
  +        name_str, NULL) != APR_SUCCESS) \
               return APR_NOTTHREADSAFE; \
       if (ap_lock(lock_##func_name) != APR_SUCCESS) \
           return APR_NOTTHREADSAFE; \