From 25cb08ed2f65ec38ec7b75b04f0664d16568d5f1 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Tue, 14 Sep 2010 08:42:25 +0000 Subject: [PATCH] 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 --- scst/src/scst_pres.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scst/src/scst_pres.c b/scst/src/scst_pres.c index 014ba3baf..a7a591013 100644 --- a/scst/src/scst_pres.c +++ b/scst/src/scst_pres.c @@ -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");