diff --git a/src/node_options-inl.h b/src/node_options-inl.h index 9c8d24e29e9c7d..8fc2feff4dc6d4 100644 --- a/src/node_options-inl.h +++ b/src/node_options-inl.h @@ -416,7 +416,7 @@ void OptionsParser::Parse( *Lookup(info.field, options) = std::atoll(value.c_str()); break; case kUInteger: - *Lookup(info.field, options) = std::stoull(value.c_str()); + *Lookup(info.field, options) = std::stoull(value); break; case kString: *Lookup(info.field, options) = value;