dect
/
linux-2.6
Archived
13
0
Fork 0

Staging: line6: variax.c: fixed a space a "x ? a : b" coding style issue

Fixed a coding style issue.

Signed-off-by: Sylvain Trias <bozo@nobodix.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Sylvain Trias 2010-02-24 00:17:52 +01:00 committed by Greg Kroah-Hartman
parent ea12ac4fd2
commit 0f7cf0034c
1 changed files with 1 additions and 1 deletions

View File

@ -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;