Skip to content

Commit

Permalink
Intentionally bad style to test
Browse files Browse the repository at this point in the history
  • Loading branch information
cjappl committed Dec 5, 2024
1 parent 052b232 commit 05ae086
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ jobs:
- uses: actions/checkout@v2
- uses: RafikFarhad/clang-format-github-action@v3
with:
sources: "include/**/*.h,examples/**/*.cpp,test/*.cpp"
sources: "include/rtlog/rtlog.h"
4 changes: 2 additions & 2 deletions include/rtlog/rtlog.h
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ class Logger {

InternalLogData value;
while (mQueue.try_dequeue(value)) {
printLogFn(value.mLogData, value.mSequenceNumber, "%s",
printLogFn(value.mLogData, value.mSequenceNumber, "%s",
value.mMessage.data());
numProcessed++;
numProcessed++;
}

return numProcessed;
Expand Down

0 comments on commit 05ae086

Please sign in to comment.