From d8746bfc9d8d944082726cdcbee634b1ec72d45f Mon Sep 17 00:00:00 2001 From: "David Kaspar [Dee'Kej]" Date: Wed, 30 May 2018 17:10:02 +0200 Subject: src/usleep.c: GCC warnings fixed --- src/usleep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/usleep.c b/src/usleep.c index e5e3077d..58ab2d79 100644 --- a/src/usleep.c +++ b/src/usleep.c @@ -28,13 +28,13 @@ #include "popt.h" -int main(int argc, char **argv) { +int main(const int argc, const char **argv) { unsigned long count; poptContext optCon; int showVersion = 0; int showOot = 0; int rc; - char * countStr = NULL; + const char * countStr = NULL; struct poptOption options[] = { { "version", 'v', POPT_ARG_NONE, &showVersion, 0, "Display the version of this program, and exit" }, -- cgit v1.2.1