mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 18:13:26 -04:00
staging: ced1401: Add void declarations in zero-arg functions.
Added explicit void declarations to zero-argument function headers.
The following coccinelle script was used:
@addvoid@
identifier f;
@@
f(
+ void
) { ... }
Signed-off-by: Chi Pham <fempsci@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1795f89542
commit
fb3cdd16f2
@@ -376,7 +376,7 @@ static short U14Control1401(short sHand, LONG lCode, TCSBLOCK* pBlk)
|
||||
** SafeTickCount
|
||||
** Gets time in approximately units of a millisecond.
|
||||
*****************************************************************************/
|
||||
static long SafeTickCount()
|
||||
static long SafeTickCount(void)
|
||||
{
|
||||
#ifdef _IS_WINDOWS_
|
||||
return GetTickCount();
|
||||
|
||||
Reference in New Issue
Block a user