]> git.donarmstrong.com Git - qmk_firmware.git/commit
fixed function to not accept any arguments.
authorOle Anders <git@swoy.org>
Tue, 28 Mar 2017 15:08:01 +0000 (17:08 +0200)
committerOle Anders <git@swoy.org>
Tue, 28 Mar 2017 15:08:01 +0000 (17:08 +0200)
commit256abc64d5daee6d7526d33455f6f28cc782dee1
tree786ecf32393ce9414f1c6fd4da7509efbc76d7fe
parent1b821eca663fb6cbe13ea1753f220bce5a7636a6
fixed function to not accept any arguments.

As per Pramod's comment on stack overflow:

In C int foo() and int foo(void) are different functions. int foo()
accepts an arbitrary number of arguments, while int foo(void) accepts 0
arguments. In C++ they mean the same thing. I suggest that you use void
consistently when you mean no arguments.
keyboards/satan/keymaps/admiralStrokers/keymap.c