GET: Fix confusion over the type of the 'type' parameter.
authorBen Pfaff <blp@cs.stanford.edu>
Thu, 10 Nov 2011 05:27:41 +0000 (21:27 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Thu, 10 Nov 2011 05:30:26 +0000 (21:30 -0800)
The 'type' parameter was being used to pass in an "enum reader_command" but
it was then later assigned a value of "enum pfm_type".  This renames 'type'
to 'command' for clarity and just deletes the assignment of the "enum
pfm_type" value entirely because the value was not used.

Found by Clang.

Reported-by: Jeremy Lavergne <jeremy@lavergne.gotdns.org>

No differences found