Remove stray fprintf left from testing (introduced in 7039abe)

This commit is contained in:
Daniel Lange 2022-04-26 13:35:35 +02:00
parent 1f2f4fe891
commit cdf3f3c50b
1 changed files with 0 additions and 1 deletions

View File

@ -1036,7 +1036,6 @@ bool Platform_init(void) {
while (fgets(lineBuffer, sizeof(lineBuffer), fd)) { while (fgets(lineBuffer, sizeof(lineBuffer), fd)) {
// detect lxc or overlayfs and guess that this means we are running containerized // detect lxc or overlayfs and guess that this means we are running containerized
if (String_startsWith(lineBuffer, "lxcfs ") || String_startsWith(lineBuffer, "overlay ")) { if (String_startsWith(lineBuffer, "lxcfs ") || String_startsWith(lineBuffer, "overlay ")) {
fprintf(stderr, "%s\n", lineBuffer);
Running_containerized = true; Running_containerized = true;
break; break;
} }