summaryrefslogtreecommitdiffstats
path: root/win/tkWinWindow.c
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@users.sourceforge.net>2008-07-26 11:49:27 (GMT)
committerpatthoyts <patthoyts@users.sourceforge.net>2008-07-26 11:49:27 (GMT)
commitcd201a745af23cce1d4e8c78aaed0a39b5760788 (patch)
treea69a9490ab1bc203de6550113d556a78ca2e4935 /win/tkWinWindow.c
parentac9105656dcdedaac77fbde7e874b7d1d9d3e2b1 (diff)
downloadtk-cd201a745af23cce1d4e8c78aaed0a39b5760788.zip
tk-cd201a745af23cce1d4e8c78aaed0a39b5760788.tar.gz
tk-cd201a745af23cce1d4e8c78aaed0a39b5760788.tar.bz2
bug #2026405: Check for 0x prefix in sprintf %p to work around cygwin issue.
Diffstat (limited to 'win/tkWinWindow.c')
-rw-r--r--win/tkWinWindow.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/win/tkWinWindow.c b/win/tkWinWindow.c
index e7a25af..6959781 100644
--- a/win/tkWinWindow.c
+++ b/win/tkWinWindow.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkWinWindow.c,v 1.15 2007/02/23 14:15:34 dkf Exp $
+ * RCS: @(#) $Id: tkWinWindow.c,v 1.15.4.1 2008/07/26 11:49:30 patthoyts Exp $
*/
#include "tkWinInt.h"
@@ -174,9 +174,12 @@ TkpPrintWindowId(
/*
* Use pointer representation, because Win64 is P64 (*not* LP64). Windows
* doesn't print the 0x for %p, so we do it.
+ * bug #2026405: cygwin does output 0x for %p so test and recover.
*/
sprintf(buf, "0x%p", hwnd);
+ if (buf[2] == '0' && buf[3] == 'x')
+ sprintf(buf, "%p", hwnd);
}
/*