summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorjwoolley <jwoolley@13f79535-47bb-0310-9956-ffa450edef68>2003-09-03 04:30:50 +0000
committerjwoolley <jwoolley@13f79535-47bb-0310-9956-ffa450edef68>2003-09-03 04:30:50 +0000
commitb7543b734594e3e64e475209c5750015bd96561d (patch)
tree4078a5529d412b3a9ca429bde8ebcfc4dd91a7bc /file_io
parent149a9f0623d2fd48146fa8868b69c0f633c82fbd (diff)
downloadlibapr-b7543b734594e3e64e475209c5750015bd96561d.tar.gz
style police
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64603 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/unix/seek.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/file_io/unix/seek.c b/file_io/unix/seek.c
index 708d81ab5..725e522ab 100644
--- a/file_io/unix/seek.c
+++ b/file_io/unix/seek.c
@@ -114,7 +114,8 @@ APR_DECLARE(apr_status_t) apr_file_seek(apr_file_t *thefile, apr_seek_where_t wh
*offset = thefile->filePtr - thefile->dataRead + thefile->bufpos;
return rc;
- } else {
+ }
+ else {
rv = lseek(thefile->filedes, *offset, where);
if (rv == -1) {