15 lines
769 B
Diff
15 lines
769 B
Diff
diff --git a/src/basic/rlimit-util.c b/src/basic/rlimit-util.c
|
|
index afd74ac..3a731f4 100644
|
|
--- a/src/basic/rlimit-util.c
|
|
+++ b/src/basic/rlimit-util.c
|
|
@@ -44,7 +44,7 @@ int setrlimit_closest(int resource, const struct rlimit *rlim) {
|
|
fixed.rlim_max == highest.rlim_max)
|
|
return 0;
|
|
|
|
- log_debug("Failed at setting rlimit " RLIM_FMT " for resource RLIMIT_%s. Will attempt setting value " RLIM_FMT " instead.", rlim->rlim_max, rlimit_to_string(resource), fixed.rlim_max);
|
|
+ log_debug("Failed at setting rlimit %ju for resource RLIMIT_%s. Will attempt setting value %ju instead.", (uintmax_t)rlim->rlim_max, rlimit_to_string(resource), (uintmax_t)fixed.rlim_max);
|
|
|
|
return RET_NERRNO(setrlimit(resource, &fixed));
|
|
}
|
|
|