summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-07-02 20:43:16 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-07-02 20:43:16 (GMT)
commit3f704efe4e8c1fc7b8eff04d4a7eb80c31c7f44e (patch)
tree2197fdfe935e76e4b8dd4b78ccd3a79b7320603d /macosx
parent7add065e0f5720a2ee8d4d874931087e1ad246cc (diff)
parent8e39be1340c8878cb33ac4c219acb88d3521a7a0 (diff)
downloadtcl-3f704efe4e8c1fc7b8eff04d4a7eb80c31c7f44e.zip
tcl-3f704efe4e8c1fc7b8eff04d4a7eb80c31c7f44e.tar.gz
tcl-3f704efe4e8c1fc7b8eff04d4a7eb80c31c7f44e.tar.bz2
merge trunk
Diffstat (limited to 'macosx')
-rw-r--r--macosx/tclMacOSXFCmd.c2
-rw-r--r--macosx/tclMacOSXNotify.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/macosx/tclMacOSXFCmd.c b/macosx/tclMacOSXFCmd.c
index 8659e95..9fd279f 100644
--- a/macosx/tclMacOSXFCmd.c
+++ b/macosx/tclMacOSXFCmd.c
@@ -106,7 +106,7 @@ typedef struct finderinfo {
u_int32_t extendedFileInfo[4];
} __attribute__ ((__packed__)) finderinfo;
-typedef struct fileinfobuf {
+typedef struct {
u_int32_t info_length;
u_int32_t data[8];
} fileinfobuf;
diff --git a/macosx/tclMacOSXNotify.c b/macosx/tclMacOSXNotify.c
index 9b7bd1a..a7f26b7 100644
--- a/macosx/tclMacOSXNotify.c
+++ b/macosx/tclMacOSXNotify.c
@@ -217,7 +217,7 @@ typedef struct FileHandler {
* handlers are ready to fire.
*/
-typedef struct FileHandlerEvent {
+typedef struct {
Tcl_Event header; /* Information that is standard for all
* events. */
int fd; /* File descriptor that is ready. Used to find
@@ -232,7 +232,7 @@ typedef struct FileHandlerEvent {
* writable, and exceptional conditions.
*/
-typedef struct SelectMasks {
+typedef struct {
fd_set readable;
fd_set writable;
fd_set exceptional;