summaryrefslogtreecommitdiff
path: root/components/uptime.c
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2022-10-27 02:16:05 +0600
committerRafael Marçalo <raroma09@gmail.com>2022-10-27 12:59:51 +0100
commit24d0ad53fe9ea7e7a9ecb78a178d040d71f2edb0 (patch)
tree770d6bf46d2e1e9821ec528e1826b9753b2dee86 /components/uptime.c
parentbae1ab9e614ab1497ebe300866244cd8ab6fdbca (diff)
do not rely on obsolete feature
function prototype with unspecified argument is obsolete since c99. additionally some of these function which don't take any argument were being called with a `const char *` arg, which is UB. fix both these issues by declararing ALL the components to accept a `const char *`, and name the arg "unused" if it's meant to be ignored.
Diffstat (limited to 'components/uptime.c')
-rw-r--r--components/uptime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/uptime.c b/components/uptime.c
index fc3d204..99d1eda 100644
--- a/components/uptime.c
+++ b/components/uptime.c
@@ -15,7 +15,7 @@
#endif
const char *
-uptime(void)
+uptime(const char *unused)
{
char warn_buf[256];
uintmax_t h, m;