From 25e1155f5cddca4ea48359f08c65d1695e6f62e8 Mon Sep 17 00:00:00 2001 From: dpage Date: Thu, 28 May 2009 11:52:22 +0000 Subject: [PATCH] Fix typo git-svn-id: svn://svn.pgadmin.org/trunk/pgadmin3@7888 a7884b65-44f6-0310-8a51-81a127f17b15 --- pgadmin/frm/frmStatus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgadmin/frm/frmStatus.cpp b/pgadmin/frm/frmStatus.cpp index 0055602cd..0d5a83030 100644 --- a/pgadmin/frm/frmStatus.cpp +++ b/pgadmin/frm/frmStatus.cpp @@ -1647,7 +1647,7 @@ void frmStatus::addLogLine(const wxString &str, bool formatted) wxString logSeverity; // Skip prefix, get message wxString rest = str.Mid(str.Find(wxT(":-"))+1) ; - if (rest[0] = wxT('-')) + if (rest[0] == wxT('-')) rest = rest.Mid(1); // Separate loglevel from message -- 2.39.5