JSLint: use ===.

This commit is contained in:
Joel Martin 2010-08-04 15:14:40 -05:00
parent a6a1ad3d0a
commit b925c96781
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}