Skip to content

Commit

Permalink
src: fix cpp linting
Browse files Browse the repository at this point in the history
  • Loading branch information
debadree25 committed Jan 3, 2023
1 parent 9d524ea commit 6ccf7f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,8 @@ ExitCode LoadSnapshotDataAndRun(const SnapshotData** snapshot_data_ptr,
}
std::unique_ptr<SnapshotData> read_data = std::make_unique<SnapshotData>();
if (!SnapshotData::FromBlob(read_data.get(), fp)) {
// If we fail to read the customized snapshot, simply exit with kStartupSnapshotFailure.
// If we fail to read the customized snapshot,
// simply exit with kStartupSnapshotFailure.
exit_code = ExitCode::kStartupSnapshotFailure;
return exit_code;
}
Expand Down

0 comments on commit 6ccf7f0

Please sign in to comment.