Update change log and spec for wrt-plugins-tizen_0.4.49
[framework/web/wrt-plugins-tizen.git] / src / Common / StandaloneConsole / StandaloneConsole.cpp
index 937dc07..3aba307 100755 (executable)
@@ -293,7 +293,7 @@ JSContextRef StandaloneConsole::getGlobalContext(){
 JSValueRef StandaloneConsole::RunLineEx(const char* line, JSValueRef *exception){
     JSStringRef jsScript = JSStringCreateWithUTF8CString(line);
     int size = strlen(line);
-    if( size != JSStringGetLength(jsScript) ){
+    if( size != static_cast <int>(JSStringGetLength(jsScript))){
         cout <<"error - fail to converting JSStringRef"<<endl;
     }
     JSValueRef ret = JSEvaluateScript(mGlobalContext, jsScript, NULL, NULL, 0, exception);