You are viewing a plain text version of this content. The canonical link for it is here.
Posted to websh-cvs@tcl.apache.org by ro...@apache.org on 2002/03/05 16:02:11 UTC

cvs commit: tcl-websh/src/generic webout.c

ronnie      02/03/05 07:02:11

  Modified:    src/generic webout.c
  Log:
  - adde (unnecessary ?) type cast to avoid compiler warning
  
  Revision  Changes    Path
  1.7       +2 -2      tcl-websh/src/generic/webout.c
  
  Index: webout.c
  ===================================================================
  RCS file: /home/cvs/tcl-websh/src/generic/webout.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- webout.c	26 Feb 2002 17:07:25 -0000	1.6
  +++ webout.c	5 Mar 2002 15:02:11 -0000	1.7
  @@ -9,7 +9,7 @@
    * See the file "license.terms" for information on usage and
    * redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    *
  - * @(#) $Id: webout.c,v 1.6 2002/02/26 17:07:25 hefti Exp $
  + * @(#) $Id: webout.c,v 1.7 2002/03/05 15:02:11 ronnie Exp $
    *
    */
   
  @@ -331,7 +331,7 @@
   		    name = Tcl_GetString(objv[2]);
   		    /* we have to find the new channel */
   		    if (!strcmp(name, "default")) {
  -			name = requestGetDefaultOutChannelName();
  +			name = (char *) requestGetDefaultOutChannelName();
   		    }
   		    responseObj =
   			getResponseObj(interp, outData, name);
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: websh-cvs-unsubscribe@tcl.apache.org
For additional commands, e-mail: websh-cvs-help@tcl.apache.org