summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXServices.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-03-17 08:36:55 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-03-17 08:36:55 (GMT)
commit1f915d51ed45d9f68cb4933a1c31b68c254ed242 (patch)
tree76eaf621e1859748736c351fd39fdd66844ade58 /macosx/tkMacOSXServices.c
parent9039a4d498efadb7fcf4c44e9802e336e8ea0d28 (diff)
downloadtk-1f915d51ed45d9f68cb4933a1c31b68c254ed242.zip
tk-1f915d51ed45d9f68cb4933a1c31b68c254ed242.tar.gz
tk-1f915d51ed45d9f68cb4933a1c31b68c254ed242.tar.bz2
Another round of type-casts for ckalloc() calls. Makes C++ compilers even more happy. Mainly for MacOS code.
Diffstat (limited to 'macosx/tkMacOSXServices.c')
-rw-r--r--macosx/tkMacOSXServices.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXServices.c b/macosx/tkMacOSXServices.c
index ac56279..974fec1 100644
--- a/macosx/tkMacOSXServices.c
+++ b/macosx/tkMacOSXServices.c
@@ -128,7 +128,7 @@ ServicesEventProc(
[generalpasteboard declareTypes:[NSArray arrayWithObjects:pboardType, nil]
owner:nil];
[generalpasteboard setString:pboardString forType:pboardType];
- event = ckalloc(sizeof(Tcl_Event));
+ event = (Tcl_Event *)ckalloc(sizeof(Tcl_Event));
event->proc = ServicesEventProc;
Tcl_QueueEvent((Tcl_Event *)event, TCL_QUEUE_TAIL);
}