Fixed a checkpatch complaint about 'return is not a function'.

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@2125 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2010-09-14 08:42:25 +00:00
parent 19ac548c1a
commit 25cb08ed2f

View File

@@ -161,7 +161,7 @@ static bool tid_equal(const uint8_t *tid_a, const uint8_t *tid_b)
} else
len = TID_COMMON_SIZE;
return (memcmp(tid_a, tid_b, len) == 0);
return memcmp(tid_a, tid_b, len) == 0;
out_error:
PRINT_ERROR("%s", "Invalid initiator port transport id");