diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-07-02 09:28:05 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-07-02 09:28:05 (GMT) |
commit | 8d9bcf37ddbe36e3fd50042d8dfb15bc5a6c2d12 (patch) | |
tree | c3e3547bdaa0b24960c7befe661373841b11c38e /unix/tkUnixEmbed.c | |
parent | 7b6e25bd97a76f688ed363cac924ea99a83fa5f4 (diff) | |
download | tk-8d9bcf37ddbe36e3fd50042d8dfb15bc5a6c2d12.zip tk-8d9bcf37ddbe36e3fd50042d8dfb15bc5a6c2d12.tar.gz tk-8d9bcf37ddbe36e3fd50042d8dfb15bc5a6c2d12.tar.bz2 |
Don't use "struct ThreadSpecificData", while the type name "ThreadSpecificData" is already sufficient.
Diffstat (limited to 'unix/tkUnixEmbed.c')
-rw-r--r-- | unix/tkUnixEmbed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tkUnixEmbed.c b/unix/tkUnixEmbed.c index d9203ca..a33a623 100644 --- a/unix/tkUnixEmbed.c +++ b/unix/tkUnixEmbed.c @@ -42,7 +42,7 @@ typedef struct Container { * process. */ } Container; -typedef struct ThreadSpecificData { +typedef struct { Container *firstContainerPtr; /* First in list of all containers managed by * this process. */ |