summaryrefslogtreecommitdiff
path: root/file_io/win32
diff options
context:
space:
mode:
authorstoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68>2000-02-01 00:57:34 +0000
committerstoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68>2000-02-01 00:57:34 +0000
commit23ba8f7d2947a176c0e1f86a450d17e8a4cc0188 (patch)
tree487ea68f28e7f8a2ec4a503eec9bd376a99e2d95 /file_io/win32
parentb96de10b0a4409922d23a62138e3dc1064b1ed01 (diff)
downloadlibapr-23ba8f7d2947a176c0e1f86a450d17e8a4cc0188.tar.gz
Fix indenting
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59642 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/win32')
-rw-r--r--file_io/win32/seek.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/file_io/win32/seek.c b/file_io/win32/seek.c
index fe1439c32..465243acb 100644
--- a/file_io/win32/seek.c
+++ b/file_io/win32/seek.c
@@ -61,24 +61,24 @@
ap_status_t ap_seek(struct file_t *thefile, ap_seek_where_t where, ap_off_t *offset)
{
DWORD howmove;
- DWORD rv;
+ DWORD rv;
- switch(where) {
- case APR_SET: {
- howmove = FILE_BEGIN;
- break;
- }
- case APR_CUR: {
- howmove = FILE_CURRENT;
- break;
- }
- case APR_END: {
- howmove = FILE_END;
- break;
- }
- }
+ switch(where) {
+ case APR_SET: {
+ howmove = FILE_BEGIN;
+ break;
+ }
+ case APR_CUR: {
+ howmove = FILE_CURRENT;
+ break;
+ }
+ case APR_END: {
+ howmove = FILE_END;
+ break;
+ }
+ }
- rv = SetFilePointer(thefile->filehand, *offset,NULL, howmove);
+ rv = SetFilePointer(thefile->filehand, *offset, NULL, howmove);
if (rv == -1) {
*offset = -1;
return APR_EEXIST;