From ceb7cc7d21296c67996ddcdc45f6b2ed8687dccb Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Mon, 22 Jul 2013 18:32:48 +0000 Subject: [PATCH] scst_lib: Fix a checkpatch complaint Avoid that the checkpatch tool included in kernel 3.10 reports the following: WARNING: space prohibited between function name and open parenthesis '(' git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@4918 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/src/scst_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scst/src/scst_lib.c b/scst/src/scst_lib.c index 8d1332d6a..e614e9c62 100644 --- a/scst/src/scst_lib.c +++ b/scst/src/scst_lib.c @@ -6979,7 +6979,7 @@ EXPORT_SYMBOL_GPL(scst_calc_block_shift); */ #define shift_left_overflows(a, b) \ ({ \ - typeof (a) _minus_one = -1LL; \ + typeof(a) _minus_one = -1LL; \ bool _a_is_signed = _minus_one < 0; \ int _shift = sizeof(1ULL) * 8 - ((b) + _a_is_signed); \ _shift < 0 || ((a) & ~((1ULL << _shift) - 1)) != 0; \