summaryrefslogtreecommitdiff
path: root/file_io/netware/flock.c
diff options
context:
space:
mode:
Diffstat (limited to 'file_io/netware/flock.c')
-rw-r--r--file_io/netware/flock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file_io/netware/flock.c b/file_io/netware/flock.c
index c083a0ed4..192e3307c 100644
--- a/file_io/netware/flock.c
+++ b/file_io/netware/flock.c
@@ -26,7 +26,7 @@ apr_status_t apr_file_lock(apr_file_t *thefile, int type)
if(NXFileRangeLock(thefile->filedes,fc, 0, 0) == -1)
return errno;
-
+
return APR_SUCCESS;
}
@@ -34,6 +34,6 @@ apr_status_t apr_file_unlock(apr_file_t *thefile)
{
if(NXFileRangeUnlock(thefile->filedes,NX_RANGE_LOCK_CANCEL,0 , 0) == -1)
return errno;
-
+
return APR_SUCCESS;
}