Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
src: fix typo in node_snapshotable.cc
ImmeidateInfo -> ImmediateInfo

PR-URL: #46103
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
kwarabei authored and juanarbol committed Jan 31, 2023
1 parent ebe2921 commit 0ac4e5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node_snapshotable.cc
Expand Up @@ -620,12 +620,12 @@ template <>
size_t FileWriter::Write(const ImmediateInfo::SerializeInfo& data) {
if (is_debug) {
std::string str = ToStr(data);
Debug("Write<ImmeidateInfo::SerializeInfo>() %s\n", str.c_str());
Debug("Write<ImmediateInfo::SerializeInfo>() %s\n", str.c_str());
}

size_t written_total = Write<AliasedBufferIndex>(data.fields);

Debug("Write<ImmeidateInfo::SerializeInfo>() wrote %d bytes\n",
Debug("Write<ImmediateInfo::SerializeInfo>() wrote %d bytes\n",
written_total);
return written_total;
}
Expand Down

0 comments on commit 0ac4e5d

Please sign in to comment.