mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-05 10:48:03 -04:00
16 lines
367 B
C
16 lines
367 B
C
$NetBSD: patch-macosx_tkMacOSXDraw.c,v 1.1 2012/11/24 21:38:50 adam Exp $
|
||
|
||
Void function should not return any values.
|
||
|
||
--- macosx/tkMacOSXDraw.c.orig 2012-11-24 20:55:20.000000000 +0000
|
||
+++ macosx/tkMacOSXDraw.c
|
||
@@ -744,7 +744,7 @@ DrawCGImage(
|
||
} else {
|
||
TkMacOSXDbgMsg("Drawing of empty CGImage requested");
|
||
}
|
||
- return Success;
|
||
+ return;
|
||
}
|
||
|
||
/*
|