diff options
author | fvogel <fvogelnew1@free.fr> | 2023-03-30 03:45:00 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2023-03-30 03:45:00 (GMT) |
commit | d6d59a6dfd9fc733cf1da68fff8fe730f46532c0 (patch) | |
tree | f4919215dcb095153fb3e1545f46fc3d891843d4 /macosx/tkMacOSXInit.c | |
parent | 26e407f0c356f517766a43f6642454d5d9556190 (diff) | |
parent | 9183585b25cd4a4ec5b1edebba3696dfb8c026e5 (diff) | |
download | tk-d6d59a6dfd9fc733cf1da68fff8fe730f46532c0.zip tk-d6d59a6dfd9fc733cf1da68fff8fe730f46532c0.tar.gz tk-d6d59a6dfd9fc733cf1da68fff8fe730f46532c0.tar.bz2 |
Fix [ee0847f633]: Aqua: compiler warning in debug builds. And Fix [2ed289cae0]: Aqua: more format specifiers than arguments in tkToolbarButton
Diffstat (limited to 'macosx/tkMacOSXInit.c')
-rw-r--r-- | macosx/tkMacOSXInit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXInit.c b/macosx/tkMacOSXInit.c index 2430504..bc42310 100644 --- a/macosx/tkMacOSXInit.c +++ b/macosx/tkMacOSXInit.c @@ -114,7 +114,7 @@ static int TkMacOSVersionObjCmd(void *cd, Tcl_Interp *ip, #ifdef TK_MAC_DEBUG_NOTIFICATIONS - (void) _postedNotification: (NSNotification *) notification { - TKLog(@"-[%@(%p) %s] %@", [self class], self, _cmd, notification); + TKLog(@"-[%@(%p) %s] %@", [self class], self, sel_getName(_cmd), notification); } #endif |