diff options
author | Evgeny <me@ch1p.com> | 2016-09-19 20:54:49 +0200 |
---|---|---|
committer | Evgeny <me@ch1p.com> | 2016-09-19 20:54:49 +0200 |
commit | d00e1d5eccf4192f1a9f2ec36107ad3b6616ee22 (patch) | |
tree | 902eebf1712e9a71c0607de31533849c696ab6b0 | |
parent | 5782f6cfdb0b12e92d13093cc45b6f4a2846d7f9 (diff) |
code fix
-rwxr-xr-x | index.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -18,9 +18,9 @@ void flex(const FunctionCallbackInfo<Value>& args) { String::Utf8Value nameArg(args[0]); string nameString(*nameArg); string nameStringWindows1251 = utf2cp(nameString); - - String::Utf8Value сaseArg(args[2]); - string caseString(*сaseArg); + + String::Utf8Value caseArg(args[2]); + string caseString(*caseArg); string caseStringWindows1251 = utf2cp(caseString); String::Utf8Value typeArg(args[3]); |