aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/usleep.c4
1 files changed, 2 insertions, 2 deletions
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" },