Skip to content

Commit

Permalink
src: fix --heapsnapshot-near-heap-limit error hint
Browse files Browse the repository at this point in the history
PR-URL: #44216
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
  • Loading branch information
legendecas authored and juanarbol committed Oct 11, 2022
1 parent 9593c37 commit c045faf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_options.cc
Expand Up @@ -140,7 +140,7 @@ void EnvironmentOptions::CheckOptions(std::vector<std::string>* errors) {
}

if (heap_snapshot_near_heap_limit < 0) {
errors->push_back("--heap-snapshot-near-heap-limit must not be negative");
errors->push_back("--heapsnapshot-near-heap-limit must not be negative");
}

if (test_runner) {
Expand Down

0 comments on commit c045faf

Please sign in to comment.