Fix build on windows in debuggerkitinformation.

Change-Id: I45137f08147d073f8c111c94a6303a90085183ef
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
David Schulz
2013-10-23 08:38:21 +02:00
committed by Orgad Shaneh
parent 719c87e599
commit 03dbb665b7

View File

@@ -206,7 +206,7 @@ static DebuggerItem::MatchLevel matchSingle(const Abi &debuggerAbi, const Abi &t
return DebuggerItem::DoesNotMatch;
}
if (debuggerAbi.wordWidth() == 64 and targetAbi.wordWidth() == 32)
if (debuggerAbi.wordWidth() == 64 && targetAbi.wordWidth() == 32)
return DebuggerItem::MatchesSomewhat;
if (debuggerAbi.wordWidth() != 0 && debuggerAbi.wordWidth() != targetAbi.wordWidth())
return DebuggerItem::DoesNotMatch;