summaryrefslogtreecommitdiffstats
path: root/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket.c')
-rw-r--r--socket.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/socket.c b/socket.c
index c9da9a19..25477de4 100644
--- a/socket.c
+++ b/socket.c
@@ -533,6 +533,9 @@ static val dgram_flush(val stream)
static val dgram_close(val stream, val throw_on_error)
{
struct dgram_stream *d = coerce(struct dgram_stream *, stream->co.handle);
+
+ (void) throw_on_error;
+
if (d->fd != -1) {
dgram_flush(stream);
close(d->fd);