diff --git a/src/node_report.cc b/src/node_report.cc index 276ce93095029d..bb4c4e1a3a8e24 100644 --- a/src/node_report.cc +++ b/src/node_report.cc @@ -775,7 +775,7 @@ static void PrintSystemInformation(JSONWriter* writer) { snprintf(buf, sizeof(buf), "%lu", limit.rlim_max); hard = std::string(buf); #else - snprintf(buf, sizeof(buf), "%lu", limit.rlim_max); + snprintf(buf, sizeof(buf), "%llu", limit.rlim_max); hard = std::string(buf); #endif }