LibC: Remove debug spam in gethostbyname()

This commit is contained in:
Andreas Kling 2019-10-16 12:09:38 +02:00
parent 38b55ee067
commit 005b416639
Notes: sideshowbarker 2024-07-19 11:40:51 +09:00

View file

@ -71,7 +71,6 @@ hostent* gethostbyname(const char* name)
return nullptr;
auto close_fd_on_exit = ScopeGuard([fd] {
dbgprintf("closing fd\n");
close(fd);
});