diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-10-16 12:09:38 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-10-16 12:09:38 +0200 |
commit | 005b416639f6b2445371bad8ab9de564056f8902 (patch) | |
tree | 29e8d6d4a3321ff78595c111069fd221c16b94e4 /Libraries/LibC/netdb.cpp | |
parent | 38b55ee0678a1c5366b49cb46a3af8554da755ec (diff) | |
download | serenity-005b416639f6b2445371bad8ab9de564056f8902.zip |
LibC: Remove debug spam in gethostbyname()
Diffstat (limited to 'Libraries/LibC/netdb.cpp')
-rw-r--r-- | Libraries/LibC/netdb.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Libraries/LibC/netdb.cpp b/Libraries/LibC/netdb.cpp index 48aea58ff6..0932510e52 100644 --- a/Libraries/LibC/netdb.cpp +++ b/Libraries/LibC/netdb.cpp @@ -71,7 +71,6 @@ hostent* gethostbyname(const char* name) return nullptr; auto close_fd_on_exit = ScopeGuard([fd] { - dbgprintf("closing fd\n"); close(fd); }); |