Fixed some function definitions.
Future releases of GCC will render function definitions like
func()
invalid by default. See the previous commit 09f88c9 ("Fixed main()
prototypes in auto tests.") for details.
Such functions should be defined like
func(void)
This is a good thing to do regardless of the upcoming GCC changes.
Reviewed-by: Alejandro Colomar <alx@nginx.com>
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
This commit is contained in:
@@ -50,7 +50,7 @@ nxt_capability_set(nxt_task_t *task, nxt_capabilities_t *cap)
|
||||
#if (NXT_HAVE_LINUX_CAPABILITY)
|
||||
|
||||
static uint32_t
|
||||
nxt_capability_linux_get_version()
|
||||
nxt_capability_linux_get_version(void)
|
||||
{
|
||||
struct __user_cap_header_struct hdr;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user