summaryrefslogtreecommitdiff
path: root/src/node_report.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_report.cc')
-rw-r--r--src/node_report.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_report.cc b/src/node_report.cc
index 276ce93095..bb4c4e1a3a 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
}