oss_post_select(): Kill unused attribute for the struct sched parameter.
authorAndre Noll <maan@systemlinux.org>
Thu, 5 Nov 2009 21:23:13 +0000 (22:23 +0100)
committerAndre Noll <maan@systemlinux.org>
Thu, 5 Nov 2009 21:23:13 +0000 (22:23 +0100)
This parameter _is_ used.

oss_write.c

index d8b571b68d2865b261646a5276dc1d08471c5b61..3ef0d9e8867c5b692f8cc8b2afc8a47c6fdda7e9 100644 (file)
@@ -52,8 +52,8 @@ static int oss_pre_select(struct sched *s, struct writer_node *wn)
        para_fd_set(powd->fd, &s->wfds, &s->max_fileno);
        return 1;
 }
-static int oss_post_select(__a_unused struct sched *s,
-               struct writer_node *wn)
+
+static int oss_post_select(struct sched *s, struct writer_node *wn)
 {
        int ret;
        struct private_oss_write_data *powd = wn->private_data;