clang-format: copy latest and re-format
clang-format-16 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.
Change-Id: I27b0d1357211259edb6ec2776924729052f238d6
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/main.cpp b/main.cpp
index 8693c5b..c8f97ca 100644
--- a/main.cpp
+++ b/main.cpp
@@ -78,7 +78,7 @@
// assume listener is not running
bool listenerStarted = false;
- bool newListener = false;
+ bool newListener = false;
pthread_t ptidListener; // handle to listener thread
@@ -93,7 +93,7 @@
pthread_create(&ptidListener, NULL, &threadListener, NULL))
{
listenerStarted = true;
- newListener = true;
+ newListener = true;
}
else
{