Staging: skein: Remove space after cast
authorAybuke Ozdemir <aybuke.147@gmail.com>
Fri, 9 Oct 2015 13:31:38 +0000 (16:31 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 12 Oct 2015 23:37:26 +0000 (16:37 -0700)
Remove unnecessary space after cast. Problem found using checkpatch.pl
CHECK: No space is necessary after a cast.

Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/skein/skein_generic.c

index c11269422f30953d1b2da053b859f4526fcbfc68..e29b9abaa4e635a9a608c1a7d65b519ce810de30 100644 (file)
@@ -22,7 +22,7 @@
 
 static int skein256_init(struct shash_desc *desc)
 {
-       return skein_256_init((struct skein_256_ctx *) shash_desc_ctx(desc),
+       return skein_256_init((struct skein_256_ctx *)shash_desc_ctx(desc),
                        SKEIN256_DIGEST_BIT_SIZE);
 }
 
This page took 0.024852 seconds and 5 git commands to generate.