summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-05-22 15:21:08 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-05-22 15:21:08 (GMT)
commit767b4e9262bdb91b097b971637d3899cf8a23528 (patch)
treec0aaa44d1467f44e910c8ad1571001e07d89077f
parent682690d085b357eb193b4cae9f0f0708d28af79a (diff)
downloadtk-767b4e9262bdb91b097b971637d3899cf8a23528.zip
tk-767b4e9262bdb91b097b971637d3899cf8a23528.tar.gz
tk-767b4e9262bdb91b097b971637d3899cf8a23528.tar.bz2
Fix [3e33602eae]: Inconsistent bind substitution of %S
-rw-r--r--unix/tkUnixPort.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tkUnixPort.h b/unix/tkUnixPort.h
index 7c6177e..c8d842d 100644
--- a/unix/tkUnixPort.h
+++ b/unix/tkUnixPort.h
@@ -188,7 +188,7 @@
#ifndef __CYGWIN__
#define TkpPrintWindowId(buf,w) \
- sprintf((buf), "%#08lx", (unsigned long) (w))
+ sprintf((buf), "0x%08lx", (unsigned long) (w))
#endif
/*