aboutsummaryrefslogtreecommitdiff
path: root/src/client/windows
diff options
context:
space:
mode:
authorJoshua Peraza <jperaza@chromium.org>2018-08-27 12:57:21 -0700
committerJoshua Peraza <jperaza@chromium.org>2018-08-27 20:58:44 +0000
commitee6f67d3b0c679d6e3d6c892911d49eafcd9ea8d (patch)
tree2791f1082fcd1cc57c4a370f47666c5e41ad7bc0 /src/client/windows
parentwin: replace a while loop with a for loop (diff)
downloadbreakpad-ee6f67d3b0c679d6e3d6c892911d49eafcd9ea8d.tar.xz
win: fix formatting after 21c98747
Change-Id: If50c3563fec7a8a9edf05c22f7d157201184df38 Reviewed-on: https://chromium-review.googlesource.com/1191671 Reviewed-by: Mike Frysinger <vapier@chromium.org>
Diffstat (limited to 'src/client/windows')
-rw-r--r--src/client/windows/handler/exception_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/windows/handler/exception_handler.cc b/src/client/windows/handler/exception_handler.cc
index ef736f31..c369b65d 100644
--- a/src/client/windows/handler/exception_handler.cc
+++ b/src/client/windows/handler/exception_handler.cc
@@ -388,7 +388,7 @@ DWORD ExceptionHandler::ExceptionHandlerThreadMain(void* lpParameter) {
assert(self->handler_start_semaphore_ != NULL);
assert(self->handler_finish_semaphore_ != NULL);
- for(;;) {
+ for (;;) {
if (WaitForSingleObject(self->handler_start_semaphore_, INFINITE) ==
WAIT_OBJECT_0) {
// Perform the requested action.