summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authorjim <jim@13f79535-47bb-0310-9956-ffa450edef68>2002-05-01 23:23:02 +0000
committerjim <jim@13f79535-47bb-0310-9956-ffa450edef68>2002-05-01 23:23:02 +0000
commitb573df1c34bece8cd07f0ef81245c53172be2d60 (patch)
tree52da8577e2fe5e65ec86517d83fcb0dd88a6d17d /dso
parent8ce2cfff92625baa5e999b066d4e86c7b1a21695 (diff)
downloadlibapr-b573df1c34bece8cd07f0ef81245c53172be2d60.tar.gz
Minor formatting
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63344 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-rw-r--r--dso/unix/dso.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dso/unix/dso.c b/dso/unix/dso.c
index b32dbafc7..bb3d0b685 100644
--- a/dso/unix/dso.c
+++ b/dso/unix/dso.c
@@ -127,7 +127,8 @@ APR_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle,
char* err_msg = NULL;
if (NSCreateObjectFileImageFromFile(path, &image) == NSObjectFileImageSuccess) {
#if defined(NSLINKMODULE_OPTION_RETURN_ON_ERROR)
- os_handle = NSLinkModule(image, path, NSLINKMODULE_OPTION_RETURN_ON_ERROR);
+ os_handle = NSLinkModule(image, path,
+ NSLINKMODULE_OPTION_RETURN_ON_ERROR);
#else
os_handle = NSLinkModule(image, path, FALSE);
#endif