From: Nick Mathewson Date: Thu, 31 May 2012 16:36:54 +0000 (-0400) Subject: reindent CreateFile arguments. X-Git-Tag: tor-0.2.3.16-alpha~30^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2e58882b90a5015554b59862869b20dba39a5d58;p=thirdparty%2Ftor.git reindent CreateFile arguments. --- diff --git a/src/common/compat.c b/src/common/compat.c index 3174da6479..82332f1016 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;