Commit b925c967 authored by Joel Martin's avatar Joel Martin

JSLint: use ===.

parent a6a1ad3d
......@@ -453,7 +453,7 @@ function decode_message(data) {
function handle_message() {
//Util.Debug("RQ.slice(0,20): " + RQ.slice(0,20) + " (" + RQ.length + ")");
if (RQ.length == 0) {
if (RQ.length === 0) {
Util.Warn("handle_message called on empty receive queue");
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment