Build fixes and whatnot

This was SVN commit r9115.
This commit is contained in:
Ykkrosh
2011-03-23 21:15:22 +00:00
parent 4a2b47689b
commit 9193ba56f9
14 changed files with 31 additions and 30 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ template<> bool ScriptInterface::FromJSVal<std::wstring>(JSContext* cx, jsval v,
template<> bool ScriptInterface::FromJSVal<Path>(JSContext* cx, jsval v, Path& out)
{
std::wstring string;
if(!FromJSVal(cx, v, string))
if (!FromJSVal(cx, v, string))
return false;
out = string;
return true;