thommay 2002/06/23 14:31:48
Modified: file_io/unix dir.c
Log:
The Style Police come a knocking.
No functional changes
Revision Changes Path
1.62 +5 -3 apr/file_io/unix/dir.c
Index: dir.c
===================================================================
RCS file: /home/cvs/apr/file_io/unix/dir.c,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- dir.c 31 May 2002 22:28:40 -0000 1.61
+++ dir.c 23 Jun 2002 21:31:48 -0000 1.62
@@ -106,7 +106,8 @@
return apr_pstrndup (pool, path, (i < 0) ? 0 : i);
}
-apr_status_t apr_dir_open(apr_dir_t **new, const char *dirname, apr_pool_t
*pool)
+apr_status_t apr_dir_open(apr_dir_t **new, const char *dirname,
+ apr_pool_t *pool)
{
/* On some platforms (e.g., Linux+GNU libc), d_name[] in struct
* dirent is declared with enough storage for the name. On other
@@ -129,7 +130,7 @@
}
else {
apr_pool_cleanup_register((*new)->pool, (void *)(*new), dir_cleanup,
- apr_pool_cleanup_null);
+ apr_pool_cleanup_null);
return APR_SUCCESS;
}
}
@@ -225,7 +226,8 @@
return APR_SUCCESS;
}
-apr_status_t apr_dir_make(const char *path, apr_fileperms_t perm, apr_pool_t
*pool)
+apr_status_t apr_dir_make(const char *path, apr_fileperms_t perm,
+ apr_pool_t *pool)
{
mode_t mode = apr_unix_perms2mode(perm);