Staging: speakup: Remove space after cast
authorLaurence Rochfort <laurence.rochfort@gmail.com>
Wed, 18 May 2016 20:07:45 +0000 (21:07 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 Aug 2016 17:14:53 +0000 (19:14 +0200)
Fix the checkpatch.pl warning "No space is necessary after a cast".

Signed-off-by: Laurence Rochfort <laurence.rochfort@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/speakup/devsynth.c

index 8498971..58abd1d 100644 (file)
@@ -34,7 +34,7 @@ static ssize_t speakup_file_write(struct file *fp, const char __user *buffer,
                synth_write(buf, bytes);
                spin_unlock_irqrestore(&speakup_info.spinlock, flags);
        }
-       return (ssize_t) nbytes;
+       return (ssize_t)nbytes;
 }
 
 static ssize_t speakup_file_read(struct file *fp, char __user *buf,