diff --git a/include/aws/io/private/event_loop_impl.h b/include/aws/io/private/event_loop_impl.h index bba9653c5..f6a615e8d 100644 --- a/include/aws/io/private/event_loop_impl.h +++ b/include/aws/io/private/event_loop_impl.h @@ -25,8 +25,8 @@ typedef void(aws_event_loop_on_completion_fn)( size_t num_bytes_transferred); /** - * The aws_win32_OVERLAPPED struct is layout-compatible with OVERLAPPED as defined in . It is used - * here to avoid pulling in a dependency on which would also bring along a lot of bad macros, such + * The aws_win32_OVERLAPPED struct is layout-compatible with OVERLAPPED as defined in . It is used + * here to avoid pulling in a dependency on which would also bring along a lot of bad macros, such * as redefinitions of GetMessage and GetObject. Note that the OVERLAPPED struct layout in the Windows SDK can * never be altered without breaking binary compatibility for every existing third-party executable, so there * is no need to worry about keeping this definition in sync. diff --git a/include/aws/io/private/pki_utils.h b/include/aws/io/private/pki_utils.h index 124fbaf68..a9d553dc6 100644 --- a/include/aws/io/private/pki_utils.h +++ b/include/aws/io/private/pki_utils.h @@ -9,7 +9,7 @@ #ifdef _WIN32 /* It's ok to include external headers because this is a PRIVATE header file * (it is usually a crime to include windows.h from header file) */ -# include +# include #endif /* _WIN32 */ #ifdef AWS_OS_APPLE diff --git a/source/windows/host_resolver.c b/source/windows/host_resolver.c index 7bc10580e..97e4e7479 100644 --- a/source/windows/host_resolver.c +++ b/source/windows/host_resolver.c @@ -3,7 +3,7 @@ * SPDX-License-Identifier: Apache-2.0. */ -/* don't move this below the Windows.h include!!!!*/ +/* don't move this below the windows.h include!!!!*/ #include #include diff --git a/source/windows/iocp/iocp_event_loop.c b/source/windows/iocp/iocp_event_loop.c index ac57b3f3f..ab49bbe9c 100644 --- a/source/windows/iocp/iocp_event_loop.c +++ b/source/windows/iocp/iocp_event_loop.c @@ -13,7 +13,7 @@ #include #include -#include +#include /* The next set of struct definitions are taken directly from the windows documentation. We can't include the header files directly diff --git a/source/windows/iocp/pipe.c b/source/windows/iocp/pipe.c index a9e2185e5..cde62fdc2 100644 --- a/source/windows/iocp/pipe.c +++ b/source/windows/iocp/pipe.c @@ -12,7 +12,7 @@ #include #include -#include +#include enum read_end_state { /* Pipe is open. */ diff --git a/source/windows/iocp/socket.c b/source/windows/iocp/socket.c index 1f7a770c6..3c25db2c5 100644 --- a/source/windows/iocp/socket.c +++ b/source/windows/iocp/socket.c @@ -9,9 +9,9 @@ keep the bellow includes where they are. Also, sorry about the C++ style comment below, clang-format doesn't work (at least on my version) with the c-style comments.*/ // clang-format off -#include -#include -#include +#include +#include +#include // clang-format on #include diff --git a/source/windows/secure_channel_tls_handler.c b/source/windows/secure_channel_tls_handler.c index 3b0419919..6b8ce4e43 100644 --- a/source/windows/secure_channel_tls_handler.c +++ b/source/windows/secure_channel_tls_handler.c @@ -18,7 +18,7 @@ #include #include -#include +#include #include #include diff --git a/source/windows/shared_library.c b/source/windows/shared_library.c index c6c06708e..48d726ab2 100644 --- a/source/windows/shared_library.c +++ b/source/windows/shared_library.c @@ -4,7 +4,7 @@ */ // clang-format off -#include +#include #include // clang-format on diff --git a/source/windows/windows_pki_utils.c b/source/windows/windows_pki_utils.c index 1248d798b..ffadddb5b 100644 --- a/source/windows/windows_pki_utils.c +++ b/source/windows/windows_pki_utils.c @@ -10,9 +10,9 @@ #include -#include #include #include +#include #ifdef _MSC_VER # pragma warning(disable : 4221) /* aggregate initializer using local variable addresses */ diff --git a/source/windows/winsock_init.c b/source/windows/winsock_init.c index cba580e56..33cc26093 100644 --- a/source/windows/winsock_init.c +++ b/source/windows/winsock_init.c @@ -8,9 +8,9 @@ go around re-ordering windows header files. Also, sorry about the C++ style comm below, clang-format doesn't work (at least on my version) with the c-style comments. */ // clang-format off -#include -#include -#include +#include +#include +#include // clang-format on #include