Browse Source

Staging: skein: Remove space after cast

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>
Aybuke Ozdemir 10 years ago
parent
commit
de7be81dec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/skein/skein_generic.c

+ 1 - 1
drivers/staging/skein/skein_generic.c

@@ -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);
 }