diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-12-21 10:13:37 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-12-21 10:13:37 (GMT) |
commit | 4a9549053c5065a1fd09b601851548e7418967c0 (patch) | |
tree | edbc91ee6b8cec5968ef78ebc501937c02d79a5d /generic/tclThreadTest.c | |
parent | 7cd696d234348fee7d05b41112028901a9d7cdad (diff) | |
parent | 07bdaceb97e059a802ca158f1661c23e651ec949 (diff) | |
download | tcl-4a9549053c5065a1fd09b601851548e7418967c0.zip tcl-4a9549053c5065a1fd09b601851548e7418967c0.tar.gz tcl-4a9549053c5065a1fd09b601851548e7418967c0.tar.bz2 |
remove unnecessary struct names, which only pollute the "struct" namespace for the compiler.
Diffstat (limited to 'generic/tclThreadTest.c')
-rw-r--r-- | generic/tclThreadTest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclThreadTest.c b/generic/tclThreadTest.c index c1828bb..d642097 100644 --- a/generic/tclThreadTest.c +++ b/generic/tclThreadTest.c @@ -61,7 +61,7 @@ static ThreadSpecificData *threadList = NULL; * "thread create" Tcl command or the ThreadCreate() C function. */ -typedef struct ThreadCtrl { +typedef struct { const char *script; /* The Tcl command this thread should * execute */ int flags; /* Initial value of the "flags" field in the |