mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-12 00:50:40 +00:00
Use == not = for real.
This commit is contained in:
parent
699f400458
commit
b67b1105d3
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user