summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2020-11-14 22:29:10 (GMT)
committerfvogel <fvogelnew1@free.fr>2020-11-14 22:29:10 (GMT)
commit575cfc102348b5b467e58485ba3008df56fdd260 (patch)
treea8bf99218847d7a3853f71dec64f646791ba96af /macosx
parent2c558e59142e62c66b474b4632956ab5c0277d9b (diff)
downloadtk-575cfc102348b5b467e58485ba3008df56fdd260.zip
tk-575cfc102348b5b467e58485ba3008df56fdd260.tar.gz
tk-575cfc102348b5b467e58485ba3008df56fdd260.tar.bz2
Fix error in [9daa36c3] revealed by a warning on macOS
Diffstat (limited to 'macosx')
-rw-r--r--macosx/tkMacOSXSysTray.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXSysTray.c b/macosx/tkMacOSXSysTray.c
index 44ba123..715a661 100644
--- a/macosx/tkMacOSXSysTray.c
+++ b/macosx/tkMacOSXSysTray.c
@@ -679,7 +679,7 @@ MacSystrayObjCmd(
[statusItem setB3Callback : NULL];
[statusItem release];
*info = NULL;
- statusItem == NULL;
+ statusItem = NULL;
break;
}
}