From b925c9678172800070f6a70fcb5f30f3b384e96e Mon Sep 17 00:00:00 2001
From: Joel Martin <github@martintribe.org>
Date: Wed, 4 Aug 2010 15:14:40 -0500
Subject: [PATCH] JSLint: use ===.

---
 include/rfb.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/rfb.js b/include/rfb.js
index 766f6eb..5c8e2d1 100644
--- a/include/rfb.js
+++ b/include/rfb.js
@@ -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;
     }
-- 
2.18.1