-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a long versus int botch that made ctwm dump core on sparc64.
Patch also mailed to the ctwm bugs list.
- Loading branch information
jdc
committed
Dec 15, 2006
1 parent
b08563a
commit 1c50f65
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
$NetBSD: distinfo,v 1.11 2005/10/13 20:20:55 rillig Exp $ | ||
$NetBSD: distinfo,v 1.12 2006/12/15 18:30:15 jdc Exp $ | ||
|
||
SHA1 (ctwm-3.7.tar.gz) = 6140e82ec23499146eaab5bf3bd592f92e95683e | ||
RMD160 (ctwm-3.7.tar.gz) = 9809df2555b3eb2bf0c46c041df8c1c089b67255 | ||
Size (ctwm-3.7.tar.gz) = 1139461 bytes | ||
SHA1 (patch-aa) = aae47d907fea9d7e5164c5bac7cccc111e18b797 | ||
SHA1 (patch-ac) = 8ccf1e319c0cbe1f2cc8cb941ffc7f8b45814118 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
$NetBSD: patch-aa,v 1.6 2006/12/15 18:30:15 jdc Exp $ | ||
--- gnome.c.dist 2005-06-21 05:35:19.000000000 +0000 | ||
+++ gnome.c 2006-12-15 11:24:46.000000000 +0000 | ||
@@ -23,7 +23,7 @@ | ||
|
||
|
||
void InitGnome (void) { | ||
- int curws = 1; | ||
+ long curws = 1; | ||
virtualScreen *vs; | ||
Atom _XA_WIN_SUPPORTING_WM_CHECK, _XA_WIN_PROTOCOLS, | ||
_XA_WIN_PROTOCOLS_LIST[PROTOCOLS_COUNT], _XA_WIN_DESKTOP_BUTTON_PROXY; |