mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-18 11:11:27 +00:00
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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user