Skip to content

Commit f6c912d

Browse files
committed
Adding some spacing after 'if' statement in fileio_win32.cpp
1 parent 790aaa1 commit f6c912d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Release/src/streams/fileio_win32.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,13 @@ void _finish_create(HANDLE fh, _In_ _filestream_callback *callback, std::ios_bas
196196
}
197197
#else
198198
io_ctxt = CreateThreadpoolIo(fh, IoCompletionCallback, nullptr, nullptr);
199-
if(io_ctxt == nullptr)
199+
if (io_ctxt == nullptr)
200200
{
201201
callback->on_error(std::make_exception_ptr(utility::details::create_system_error(GetLastError())));
202202
return;
203203
}
204204

205-
if(!SetFileCompletionNotificationModes(fh, FILE_SKIP_COMPLETION_PORT_ON_SUCCESS))
205+
if (!SetFileCompletionNotificationModes(fh, FILE_SKIP_COMPLETION_PORT_ON_SUCCESS))
206206
{
207207
CloseThreadpoolIo(static_cast<PTP_IO>(io_ctxt));
208208
callback->on_error(std::make_exception_ptr(utility::details::create_system_error(GetLastError())));

0 commit comments

Comments
 (0)