Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy J Fontaine <tjfontaine@gmail.com>2014-06-11 03:36:04 +0400
committerTimothy J Fontaine <tjfontaine@gmail.com>2014-06-11 03:36:04 +0400
commit1a09da6ec219883668564d5d6cd30e8867d7e97d (patch)
treefda9b632fa5ab280286a2f0c1076bbaa008be362 /src/fs_event_wrap.cc
parentab50fad63bcbedd7c935a9c5d2ab9e4c7202c9f2 (diff)
parent1cb6f1a46ad24c60ab1fccfa3f88aad9401e6444 (diff)
Merge remote-tracking branch 'upstream/v0.10'
Conflicts: AUTHORS ChangeLog deps/v8/src/api.cc deps/v8/src/unicode-inl.h deps/v8/src/unicode.h lib/_stream_readable.js lib/http.js src/cares_wrap.cc src/node.cc src/node_crypto.cc src/node_dtrace.cc src/node_file.cc src/node_stat_watcher.cc src/node_version.h src/process_wrap.cc src/string_bytes.cc src/string_bytes.h src/udp_wrap.cc src/util.h test/simple/test-buffer.js test/simple/test-stream2-compatibility.js
Diffstat (limited to 'src/fs_event_wrap.cc')
-rw-r--r--src/fs_event_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs_event_wrap.cc b/src/fs_event_wrap.cc
index 7bd8b310f25..04f3b997fd8 100644
--- a/src/fs_event_wrap.cc
+++ b/src/fs_event_wrap.cc
@@ -112,7 +112,7 @@ void FSEventWrap::Start(const FunctionCallbackInfo<Value>& args) {
return env->ThrowTypeError("Bad arguments");
}
- String::Utf8Value path(args[0]);
+ node::Utf8Value path(args[0]);
unsigned int flags = 0;
if (args[2]->IsTrue())