# HG changeset patch # User Matti Hamalainen # Date 1166168954 0 # Node ID 60853e54395eae6384b0d2360baeda88619f5ae1 # Parent a1c32d83be4ddfef0f0a774e07a6213a3318afc5 Fix DCHAR -> char diff -r a1c32d83be4d -r 60853e54395e th_args.c --- a/th_args.c Fri Dec 15 07:48:04 2006 +0000 +++ b/th_args.c Fri Dec 15 07:49:14 2006 +0000 @@ -126,7 +126,7 @@ /* Check if option requires an argument */ -static BOOL th_args_check_arg(optarg_t *o, DCHAR *optArg) +static BOOL th_args_check_arg(optarg_t *o, char *optArg) { if ((o->optFlags & OPT_ARGMASK) == OPT_ARGREQ && optArg == NULL) { if (o->optShort != 0 && o->optLong != NULL) {