vec.c: Explicitly strip constness: we know this one's safe.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 9 Aug 2016 20:29:01 +0000 (21:29 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 9 Aug 2016 20:29:56 +0000 (21:29 +0100)
vec.c

diff --git a/vec.c b/vec.c
index d091b2c..0383c88 100644 (file)
--- a/vec.c
+++ b/vec.c
@@ -367,7 +367,8 @@ static int vec_new(ClientData cd, Tcl_Interp *ti,
   Tcl_IncrRefCount(init);
   if ((v = vec_create(ti, ndim, dim, init)) == 0)
     goto fail;
-  Tcl_SetResult(ti, Tcl_GetCommandName(ti, v->c), TCL_STATIC);
+  Tcl_SetResult(ti, (/*unconst */char *)Tcl_GetCommandName(ti, v->c),
+               TCL_STATIC);
   rc = TCL_OK;
 
 fail: