diff options
author | athenian200 <athenian200@outlook.com> | 2019-12-24 06:53:25 -0600 |
---|---|---|
committer | athenian200 <athenian200@outlook.com> | 2019-12-24 06:53:25 -0600 |
commit | c3ed7420fdeac9f989bfc2eb8a4b47bbfb57c686 (patch) | |
tree | a1ff01fa75311de4dc8abb18dd893d2690ec07ef | |
parent | 735418fa363d2556d0ce40f0b4e67ff2bfc78b59 (diff) | |
download | uxp-c3ed7420fdeac9f989bfc2eb8a4b47bbfb57c686.tar.gz |
Fix typo.
-rw-r--r-- | dom/html/HTMLMediaElement.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dom/html/HTMLMediaElement.cpp b/dom/html/HTMLMediaElement.cpp index 884f65762e..f3ef20bfc7 100644 --- a/dom/html/HTMLMediaElement.cpp +++ b/dom/html/HTMLMediaElement.cpp @@ -3480,6 +3480,7 @@ NS_IMETHODIMP HTMLMediaElement::Play() return NS_OK; } + ErrorResult rv; RefPtr<Promise> toBeIgnored = PlayInternal(rv); if (rv.Failed()) { return rv.StealNSResult(); |