From: Andre Noll Date: Thu, 5 Nov 2009 21:23:13 +0000 (+0100) Subject: oss_post_select(): Kill unused attribute for the struct sched parameter. X-Git-Tag: v0.4.0~5^2~1 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=079e0d3d2c271d7f84f79ae71f0be813c6438c8c oss_post_select(): Kill unused attribute for the struct sched parameter. This parameter _is_ used. --- diff --git a/oss_write.c b/oss_write.c index d8b571b6..3ef0d9e8 100644 --- a/oss_write.c +++ b/oss_write.c @@ -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;