Skip to content

Commit fa13e6c

Browse files
committed
pybricks/tools/pb_module_tools: fix missing void param
1 parent d769698 commit fa13e6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pybricks/tools/pb_module_tools.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
// Copyright (c) 2018-2020 The Pybricks Authors
2+
// Copyright (c) 2018-2023 The Pybricks Authors
33

44
#include "py/mpconfig.h"
55

@@ -27,7 +27,7 @@
2727
// is called and cleared when it completes
2828
STATIC bool run_loop_is_active;
2929

30-
bool pb_module_tools_run_loop_is_active() {
30+
bool pb_module_tools_run_loop_is_active(void) {
3131
return run_loop_is_active;
3232
}
3333

0 commit comments

Comments
 (0)