From 58c61b5615854f0c36e97be96883c4e547db64a5 Mon Sep 17 00:00:00 2001 From: Andrew Riedi Date: Fri, 14 Apr 2006 10:58:40 -0700 Subject: [PATCH] explorer: Fixed a typo in system tray. --- programs/explorer/systray.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/explorer/systray.c b/programs/explorer/systray.c index 00036ff8d79..48c29cb5a1a 100644 --- a/programs/explorer/systray.c +++ b/programs/explorer/systray.c @@ -155,7 +155,7 @@ static struct icon *get_icon(HWND owner, UINT id) /* search for the icon */ LIST_FOR_EACH_ENTRY( this, &tray.icons, struct icon, entry ) - if ((this->id == id) && (this->owner = owner)) return this; + if ((this->id == id) && (this->owner == owner)) return this; return NULL; }