[tor-commits] [tor/master] reindent CreateFile arguments.

nickm at torproject.org nickm at torproject.org
Thu May 31 16:43:31 UTC 2012


commit 2e58882b90a5015554b59862869b20dba39a5d58
Author: Nick Mathewson <nickm at torproject.org>
Date:   Thu May 31 12:36:54 2012 -0400

    reindent CreateFile arguments.
---
 src/common/compat.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/common/compat.c b/src/common/compat.c
index 3174da6..82332f1 100644
--- a/src/common/compat.c
+++ b/src/common/compat.c
@@ -183,11 +183,11 @@ tor_mmap_file(const char *filename)
   strlcpy(tfilename,filename,MAX_PATH);
 #endif
   file_handle = CreateFile(tfilename,
-                                GENERIC_READ, FILE_SHARE_READ,
-                                NULL,
-                                OPEN_EXISTING,
-                                FILE_ATTRIBUTE_NORMAL,
-                                0);
+                           GENERIC_READ, FILE_SHARE_READ,
+                           NULL,
+                           OPEN_EXISTING,
+                           FILE_ATTRIBUTE_NORMAL,
+                           0);
 
   if (file_handle == INVALID_HANDLE_VALUE)
     goto win_err;





More information about the tor-commits mailing list