summaryrefslogtreecommitdiff
path: root/Libraries/LibCore/IODevice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibCore/IODevice.cpp')
-rw-r--r--Libraries/LibCore/IODevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibCore/IODevice.cpp b/Libraries/LibCore/IODevice.cpp
index c818286d98..3e8f97776d 100644
--- a/Libraries/LibCore/IODevice.cpp
+++ b/Libraries/LibCore/IODevice.cpp
@@ -104,7 +104,7 @@ ByteBuffer IODevice::read(size_t max_size)
bool IODevice::can_read_from_fd() const
{
- // FIXME: Can we somehow remove this once CSocket is implemented using non-blocking sockets?
+ // FIXME: Can we somehow remove this once Core::Socket is implemented using non-blocking sockets?
fd_set rfds;
FD_ZERO(&rfds);
FD_SET(m_fd, &rfds);