mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
NO BUG: JS Debugger: Fix variable name in reportError. r=gijs
This commit is contained in:
parent
bef69b1b16
commit
8d7610ea0c
@ -2934,7 +2934,7 @@ function convertToUnicode(aString, aCharset=null) {
|
||||
* An optional prefix for the reported error message.
|
||||
*/
|
||||
function reportError(aError, aPrefix="") {
|
||||
let msg = prefix + aError.message + ":\n" + aError.stack;
|
||||
let msg = aPrefix + aError.message + ":\n" + aError.stack;
|
||||
Cu.reportError(msg);
|
||||
dumpn(msg);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user