Fixed unused param

Accidentally used a c23 feature.

MacOS runner didn't like that.
This commit is contained in:
2024-12-12 16:23:09 +11:00
parent fce71a6cda
commit cf9affe190

View File

@@ -5,7 +5,8 @@
int counter = 0;
void count(const char*) {
void count(const char* msg) {
(void)msg;
counter++;
}