changeset 64:60853e54395e

Fix DCHAR -> char
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 15 Dec 2006 07:49:14 +0000
parents a1c32d83be4d
children cceeafe5b400
files th_args.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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) {