Skip to content
Snippets Groups Projects
Commit cc13480c authored by deuce's avatar deuce
Browse files

Use === instead of == for comparison to undefined (Lint warning)

parent e96d7de1
No related branches found
No related tags found
No related merge requests found
......@@ -616,7 +616,7 @@ var FI_USERXFER =6; /* User Xfer Download */
var FI_CLOSE =7; /* Close any open records */
/********************************************/
if(this.LOG_EMERG==undefined) { /* temporary backward compatibility kludge */
if(this.LOG_EMERG===undefined) { /* temporary backward compatibility kludge */
/********************************************/
/* Log "levels" supported by log() function */
/********************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment