Skip to content

Commit

Permalink
Staging: line6: variax.c: fixed a space a "x ? a : b" coding style issue
Browse files Browse the repository at this point in the history
Fixed a coding style issue.

Signed-off-by: Sylvain Trias <bozo@nobodix.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Sylvain Trias authored and Greg Kroah-Hartman committed Mar 4, 2010
1 parent ea12ac4 commit 0f7cf00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/line6/variax.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ static ssize_t variax_set_active(struct device *dev,
if (ret)
return ret;

variax->buffer_activate[VARIAX_OFFSET_ACTIVATE] = value ? 1: 0;
variax->buffer_activate[VARIAX_OFFSET_ACTIVATE] = value ? 1 : 0;
line6_send_raw_message_async(&variax->line6, variax->buffer_activate,
sizeof(variax_activate));
return count;
Expand Down

0 comments on commit 0f7cf00

Please sign in to comment.