summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-02-13 15:07:23 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-02-13 15:07:23 (GMT)
commited7e89f24411571343e21f08baeb35984a519c30 (patch)
tree824ba4600b5dfa23ae341e1d9fd5393133c01fad /unix
parent35a1e14c068ac924f1b2e74474e535cafc86f2a0 (diff)
downloadtk-ed7e89f24411571343e21f08baeb35984a519c30.zip
tk-ed7e89f24411571343e21f08baeb35984a519c30.tar.gz
tk-ed7e89f24411571343e21f08baeb35984a519c30.tar.bz2
Fix compilation warning with -DDEBUG_FONTSEL
Diffstat (limited to 'unix')
-rw-r--r--unix/tkUnixRFont.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tkUnixRFont.c b/unix/tkUnixRFont.c
index 2c017e2..baf9071 100644
--- a/unix/tkUnixRFont.c
+++ b/unix/tkUnixRFont.c
@@ -498,7 +498,7 @@ TkpGetFontFromAttributes(
#ifdef DEBUG_FONTSEL
printf("TkpGetFontFromAttributes %s-%d %d %d\n", faPtr->family,
- faPtr->size, faPtr->weight, faPtr->slant);
+ (int)faPtr->size, faPtr->weight, faPtr->slant);
#endif /* DEBUG_FONTSEL */
pattern = XftPatternCreate();
if (faPtr->family) {
@@ -941,7 +941,7 @@ Tk_DrawChars(
if (fontPtr->ftDraw == 0) {
#ifdef DEBUG_FONTSEL
- printf("Switch to drawable 0x%x\n", drawable);
+ printf("Switch to drawable 0x%lx\n", drawable);
#endif /* DEBUG_FONTSEL */
fontPtr->ftDraw = XftDrawCreate(display, drawable,
DefaultVisual(display, fontPtr->screen),
@@ -1200,7 +1200,7 @@ TkDrawAngledChars(
if (fontPtr->ftDraw == 0) {
#ifdef DEBUG_FONTSEL
- printf("Switch to drawable 0x%x\n", drawable);
+ printf("Switch to drawable 0x%lx\n", drawable);
#endif /* DEBUG_FONTSEL */
fontPtr->ftDraw = XftDrawCreate(display, drawable,
DefaultVisual(display, fontPtr->screen),