# HG changeset patch # User Matti Hamalainen # Date 1317645553 -10800 # Node ID c811c952d21d059ad197f28e1ddf3be3a139abdb # Parent 5f73c8cd333a529f927d34f5321a3349b464a1eb Constify. diff -r 5f73c8cd333a -r c811c952d21d th_args.c --- a/th_args.c Mon Oct 03 15:38:53 2011 +0300 +++ b/th_args.c Mon Oct 03 15:39:13 2011 +0300 @@ -126,7 +126,7 @@ /* Check if option requires an argument */ -static BOOL th_args_check_arg(optarg_t *o, char *optArg) +static BOOL th_args_check_arg(const optarg_t *o, const char *optArg) { if ((o->flags & OPT_ARGMASK) == OPT_ARGREQ && optArg == NULL) {