diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-05-19 01:55:31 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-19 01:55:31 +0200 |
commit | 0383146e5e616e81c13b23a127ecfa697feac7db (patch) | |
tree | c6fb9fc26dc86c851114d3e802766547d311ffc8 | |
parent | aac29e2bba1d34762971718c40004f37415d411e (diff) |
uptime: Format function is static
-rw-r--r-- | components/uptime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/uptime.c b/components/uptime.c index 45e12db..f97809d 100644 --- a/components/uptime.c +++ b/components/uptime.c @@ -3,7 +3,7 @@ #include "../util.h" -const char * +static const char * format(int uptime) { int h, m; |