summaryrefslogtreecommitdiffstats
path: root/win/tclWinTest.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-25 11:48:29 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-25 11:48:29 (GMT)
commit1a19e1f67d4039692837657d71be3d35b40a9662 (patch)
tree507709c949d3fd2b5d934023e4e39366cae322df /win/tclWinTest.c
parentee29bbd769ed711e5e7faa7c838d23a8092cc3d1 (diff)
downloadtcl-1a19e1f67d4039692837657d71be3d35b40a9662.zip
tcl-1a19e1f67d4039692837657d71be3d35b40a9662.tar.gz
tcl-1a19e1f67d4039692837657d71be3d35b40a9662.tar.bz2
Eliminate some unneeded usages of Tcl_SetResult, Tcl_AddObjErrorInfo
Fix "make test-packages" on cygwin
Diffstat (limited to 'win/tclWinTest.c')
-rw-r--r--win/tclWinTest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinTest.c b/win/tclWinTest.c
index 136c4db..b83c0ba 100644
--- a/win/tclWinTest.c
+++ b/win/tclWinTest.c
@@ -211,7 +211,7 @@ TestvolumetypeCmd(
TclWinConvertError(GetLastError());
return TCL_ERROR;
}
- Tcl_SetResult(interp, volType, TCL_VOLATILE);
+ Tcl_AppendResult(interp, volType, NULL);
return TCL_OK;
#undef VOL_BUF_SIZE
}