Use == not = for real.

This commit is contained in:
bsmedberg%covad.net 2005-06-13 21:49:08 +00:00
parent 699f400458
commit b67b1105d3

View File

@ -569,7 +569,7 @@ nsCommandLine::EnumerateHandlers(EnumerateCallback aCallback, void *aClosure)
continue;
rv = (aCallback)(clh, this, aClosure);
if (rv = NS_ERROR_ABORT)
if (rv == NS_ERROR_ABORT)
break;
rv = NS_OK;