mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-07 03:07:02 -04:00
16 lines
406 B
C
16 lines
406 B
C
$NetBSD: patch-macosx_tkMacOSXClipboard.c,v 1.1 2012/11/24 21:38:50 adam Exp $
|
||
|
||
Void function should not return any values.
|
||
|
||
--- macosx/tkMacOSXClipboard.c.orig 2012-11-24 20:54:23.000000000 +0000
|
||
+++ macosx/tkMacOSXClipboard.c
|
||
@@ -194,7 +194,7 @@ TkMacOSXSelDeadWindow(
|
||
if (winPtr && winPtr == (TkWindow *)clipboardOwner) {
|
||
clipboardOwner = NULL;
|
||
}
|
||
- return Success;
|
||
+ return;
|
||
}
|
||
|
||
/*
|