diff options
author | Kevin Walzer <kw@codebykevin.com> | 2013-09-16 01:59:36 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2013-09-16 01:59:36 (GMT) |
commit | 13889d99405e5b3b703342d59b5478f51cbbd5bd (patch) | |
tree | 4e1308c4597786aca6f50151f5588544c3273f7e /macosx/tkMacOSXDraw.c | |
parent | 3d9172ad682a1cfffaf9f55793a947ff05c78e57 (diff) | |
download | tk-13889d99405e5b3b703342d59b5478f51cbbd5bd.zip tk-13889d99405e5b3b703342d59b5478f51cbbd5bd.tar.gz tk-13889d99405e5b3b703342d59b5478f51cbbd5bd.tar.bz2 |
Fix for http://core.tcl.tk/tk/info/8eb56719cf on broken build with 8.5.15 with clang on OS X, thanks to Ned Deily for patch
Diffstat (limited to 'macosx/tkMacOSXDraw.c')
-rw-r--r-- | macosx/tkMacOSXDraw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXDraw.c b/macosx/tkMacOSXDraw.c index 4eb4a88..58ae495 100644 --- a/macosx/tkMacOSXDraw.c +++ b/macosx/tkMacOSXDraw.c @@ -347,6 +347,7 @@ TkPutImage( TkMacOSXDbgMsg("Invalid destination drawable"); } TkMacOSXRestoreDrawingContext(&dc); + return Success; } /* @@ -744,7 +745,6 @@ DrawCGImage( } else { TkMacOSXDbgMsg("Drawing of empty CGImage requested"); } - return Success; } /* |