From e40f7fb58ec75a963d483f76cedd2ce59e5e2845 Mon Sep 17 00:00:00 2001 From: marc_culler Date: Tue, 1 Sep 2020 19:40:21 +0000 Subject: Remove a couple of superfluous casts. --- macosx/tkMacOSXSubwindows.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macosx/tkMacOSXSubwindows.c b/macosx/tkMacOSXSubwindows.c index 375aefd..f782d82 100644 --- a/macosx/tkMacOSXSubwindows.c +++ b/macosx/tkMacOSXSubwindows.c @@ -1172,7 +1172,7 @@ void * Tk_MacOSXGetNSViewForDrawable( Drawable drawable) { - return (void *) TkMacOSXGetNSViewForDrawable(drawable); + return TkMacOSXGetNSViewForDrawable(drawable); } /* @@ -1183,7 +1183,7 @@ void * TkMacOSXGetRootControl( Drawable drawable) { - return (void *) TkMacOSXGetNSViewForDrawable(drawable); + return TkMacOSXGetNSViewForDrawable(drawable); } -- cgit v0.12