Commit a5729c00 authored by Ruslan Pisarev's avatar Ruslan Pisarev Committed by Greg Kroah-Hartman

Staging: hv: fix spaces coding style issue in vstorage.h

This is a patch to the vstorage.h file that fixed up a TAB and spaces
Errors found by the checkpatch.pl tools, like
spaces required around that ':' (ctx:VxV)
Signed-off-by: default avatarRuslan Pisarev <ruslan@rpisarev.org.ua>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 003b3e94
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#define REVISION_STRING(REVISION_) #REVISION_ #define REVISION_STRING(REVISION_) #REVISION_
#define FILL_VMSTOR_REVISION(RESULT_LVALUE_) \ #define FILL_VMSTOR_REVISION(RESULT_LVALUE_) \
{ \ { \
char *revisionString = REVISION_STRING($Revision: 6 $) + 11; \ char *revisionString = REVISION_STRING($Revision : 6 $) + 11; \
RESULT_LVALUE_ = 0; \ RESULT_LVALUE_ = 0; \
while (*revisionString >= '0' && *revisionString <= '9') { \ while (*revisionString >= '0' && *revisionString <= '9') { \
RESULT_LVALUE_ *= 10; \ RESULT_LVALUE_ *= 10; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment