diff options
author | fvogel <fvogelnew1@free.fr> | 2020-11-14 22:29:10 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2020-11-14 22:29:10 (GMT) |
commit | 575cfc102348b5b467e58485ba3008df56fdd260 (patch) | |
tree | a8bf99218847d7a3853f71dec64f646791ba96af /macosx | |
parent | 2c558e59142e62c66b474b4632956ab5c0277d9b (diff) | |
download | tk-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.c | 2 |
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; } } |