diff options
author | dgp <dgp@users.sourceforge.net> | 2002-01-23 20:46:00 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-01-23 20:46:00 (GMT) |
commit | fe36337ab48292e97cc3cae11a8efe99c1143bde (patch) | |
tree | 8b7ee1b7505a49478958828584bb52e02c1a3a8b /generic/tclCmdIL.c | |
parent | 0575def9cda1df361ad97091ee969acbcc827ce3 (diff) | |
download | tcl-fe36337ab48292e97cc3cae11a8efe99c1143bde.zip tcl-fe36337ab48292e97cc3cae11a8efe99c1143bde.tar.gz tcl-fe36337ab48292e97cc3cae11a8efe99c1143bde.tar.bz2 |
* Updated socket interfaces according to TIP 27. Updated callers.
Diffstat (limited to 'generic/tclCmdIL.c')
-rw-r--r-- | generic/tclCmdIL.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c index 1602ab5..d0274a0 100644 --- a/generic/tclCmdIL.c +++ b/generic/tclCmdIL.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdIL.c,v 1.37 2002/01/17 04:37:33 dgp Exp $ + * RCS: @(#) $Id: tclCmdIL.c,v 1.38 2002/01/23 20:46:01 dgp Exp $ */ #include "tclInt.h" @@ -1074,7 +1074,7 @@ InfoHostnameCmd(dummy, interp, objc, objv) int objc; /* Number of arguments. */ Tcl_Obj *CONST objv[]; /* Argument objects. */ { - char *name; + CONST char *name; if (objc != 2) { Tcl_WrongNumArgs(interp, 2, objv, NULL); return TCL_ERROR; |