commit | d583f4f6e6005ecdc622dfc62518b5b85565f57f | [log] [tgz] |
---|---|---|
author | Wan-Teh Chang <wtc@google.com> | Wed Nov 22 11:46:57 2023 -0800 |
committer | Wan-Teh Chang <wtc@google.com> | Sat Dec 02 02:12:37 2023 +0000 |
tree | 4822c545fb34e3e5e0c2de5cda787d57037f9e49 | |
parent | 39958c0d737f1e84bde1e5049821f3d1d1d5ef40 [diff] [blame] |
fix void param declarations & prototypes These should be funcname(void) rather than funcname(). Found by searching for "() {" in C files. Bug: aomedia:3416 Change-Id: I119133dc0fe78cfb24f072da70ca4ceea8e19431
diff --git a/tools/auto_refactor/c_files/struct_code.c b/tools/auto_refactor/c_files/struct_code.c index e14372c..7f24d41 100644 --- a/tools/auto_refactor/c_files/struct_code.c +++ b/tools/auto_refactor/c_files/struct_code.c
@@ -46,4 +46,4 @@ } z; } T7; -int main() {} +int main(void) {}