Skip to content

Commit

Permalink
CI fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
bkaradzic committed Oct 26, 2024
1 parent 5085b77 commit f6c6d0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
shell: msys2 {0}
run: |
cd bx
tools\bin\windows\genie.exe --gcc=${{ matrix.project }} gmake
tools/bin/windows/genie.exe --gcc=${{ matrix.project }} gmake
make -R -C .build/projects/gmake-${{ matrix.project }} config=release64 -j$(nproc) AR=ar CC=cc CXX=c++ MINGW=$MINGW_PREFIX
- name: Check
shell: cmd
Expand Down
2 changes: 1 addition & 1 deletion tests/vsnprintf_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static bool test(const char* _expected, const char* _format, ...)
{
va_list argList;
va_start(argList, _format);
const bool result = test<true>(_expected, _format, argList);
const bool result = test<false>(_expected, _format, argList);
va_end(argList);

return result;
Expand Down

0 comments on commit f6c6d0b

Please sign in to comment.