summaryrefslogtreecommitdiff
path: root/openbsd-compat/port-linux.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd-compat/port-linux.c')
-rw-r--r--openbsd-compat/port-linux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/port-linux.c b/openbsd-compat/port-linux.c
index de6ad3fd7..f9cdc15c3 100644
--- a/openbsd-compat/port-linux.c
+++ b/openbsd-compat/port-linux.c
@@ -291,7 +291,7 @@ oom_adjust_setup(void)
291 verbose("error writing %s: %s", 291 verbose("error writing %s: %s",
292 oom_adj_path, strerror(errno)); 292 oom_adj_path, strerror(errno));
293 else 293 else
294 verbose("Set %s from %d to %d", 294 debug("Set %s from %d to %d",
295 oom_adj_path, oom_adj_save, value); 295 oom_adj_path, oom_adj_save, value);
296 } 296 }
297 fclose(fp); 297 fclose(fp);
@@ -315,7 +315,7 @@ oom_adjust_restore(void)
315 if (fprintf(fp, "%d\n", oom_adj_save) <= 0) 315 if (fprintf(fp, "%d\n", oom_adj_save) <= 0)
316 verbose("error writing %s: %s", oom_adj_path, strerror(errno)); 316 verbose("error writing %s: %s", oom_adj_path, strerror(errno));
317 else 317 else
318 verbose("Set %s to %d", oom_adj_path, oom_adj_save); 318 debug("Set %s to %d", oom_adj_path, oom_adj_save);
319 319
320 fclose(fp); 320 fclose(fp);
321 return; 321 return;