diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2021-11-20 23:40:47 +0100 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2021-11-20 23:40:47 +0100 |
| commit | db763950bbccb1e1d8034ecd6e7f06f8fadecf47 (patch) | |
| tree | e9131cfc32cb1711b20d600fed2b495fe26c2ec5 /tools/agb2mid/error.cpp | |
| parent | 74e416b578f203f5f3b2ca9e76d066ce5c7009e2 (diff) | |
Fix clang warnings and remove remaining baserom references
Diffstat (limited to 'tools/agb2mid/error.cpp')
| -rwxr-xr-x | tools/agb2mid/error.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/agb2mid/error.cpp b/tools/agb2mid/error.cpp index 13e38ffa..d824ae86 100755 --- a/tools/agb2mid/error.cpp +++ b/tools/agb2mid/error.cpp @@ -23,8 +23,7 @@ #include <cstdarg> // Reports an error diagnostic and terminates the program. -[[noreturn]] void RaiseError(const char* format, ...) -{ +[[noreturn]] void RaiseError(const char* format, ...) { const int bufferSize = 1024; char buffer[bufferSize]; std::va_list args; |
