summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Stoddard <stoddard@apache.org>2000-02-01 00:57:34 +0000
committerBill Stoddard <stoddard@apache.org>2000-02-01 00:57:34 +0000
commit9476a36b9538744f03c55b8006d33b1504672340 (patch)
tree487ea68f28e7f8a2ec4a503eec9bd376a99e2d95
parentd51934897ca0aa595828893d100ef7a8b3736744 (diff)
downloadapr-9476a36b9538744f03c55b8006d33b1504672340.tar.gz
Fix indenting
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59642 13f79535-47bb-0310-9956-ffa450edef68
-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;