Possible Duplicate:
Weird use of void

I was reading C code and came across the following. Can somebody please explain what this does.

static int do_spawn(const char *filename)
{
  (void)filename;
  // todo: fill this in
  return -1;
}

Specifically, what is the (void)filename doing?

link|improve this question

feedback

closed as exact duplicate by Carl Norum, Tony, William Pursell, Michael Dorgan, Conrad Frix Nov 18 '11 at 23:49

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 7 down vote accepted

Compilers sometimes complain about unused parameters; the (void) "cast" is simply a way to use the variable in a void, non-side-effect context so that the compiler won't complain about it being "unused".

EDIT: As rodrigo points out below, the compiler warning can be suppressed without the (void) prefix, but then another warning (about the expression having no effect) may appear instead. So (void)filename is how you might prevent both warnings.

link|improve this answer
What's with the past tense? – James Nov 18 '11 at 22:24
Actually, the cast to void wasn't necessary to remove the warning. But without it, sometimes another warning about "expression has no effect" would appear. The (void) avoided that. – rodrigo Nov 18 '11 at 22:25
@James: I've never seen it in any compiler I've ever used, but I'm also pretty young. :-) – Platinum Azure Nov 18 '11 at 22:26
@rodrigo: I didn't know that, thank you. I'll edit my answer. – Platinum Azure Nov 18 '11 at 22:28
gcc -Wall -Wextra warns unused parameter ‘filename’. – Keith Thompson Nov 18 '11 at 22:38
show 1 more comment
feedback

It's preventing a warning about an unused parameter, nothing more.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.