16 lines
465 B
Plaintext
16 lines
465 B
Plaintext
$NetBSD: patch-ar,v 1.2 2015/12/29 23:34:43 dholland Exp $
|
|
|
|
LP64 fixes.
|
|
|
|
--- Tk/generic/tkCursor.c~ 1998-01-03 07:46:25.000000000 -0500
|
|
+++ Tk/generic/tkCursor.c 2008-09-06 19:26:43.000000000 -0400
|
|
@@ -288,7 +288,7 @@ Tk_NameOfCursor(display, cursor)
|
|
|
|
if (!initialized) {
|
|
printid:
|
|
- sprintf(string, "cursor id 0x%x", (unsigned int) cursor);
|
|
+ sprintf(string, "cursor id 0x%lx", (unsigned long) cursor);
|
|
return string;
|
|
}
|
|
idKey.display = display;
|