diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2013-04-24 07:48:54 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-04-24 09:02:36 -0700 |
commit | 0e27263926699fcbbd574cff4dd6920007a50e8a (patch) | |
tree | 39d85519e82fc0ff08f8db28ad3277d3c01f40c8 /tools | |
parent | 10b637b4c8a21b299f691cecc4b6f16f44936c6d (diff) | |
download | linux-0e27263926699fcbbd574cff4dd6920007a50e8a.tar.bz2 |
Tools: hv: Fix a checkpatch warning
Fix a checkpatch warning.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/hv/hv_vss_daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hv/hv_vss_daemon.c b/tools/hv/hv_vss_daemon.c index 712cfc516c65..fea03a3edaf4 100644 --- a/tools/hv/hv_vss_daemon.c +++ b/tools/hv/hv_vss_daemon.c @@ -85,7 +85,7 @@ static int vss_operate(int operation) if (mounts == NULL) return -1; - while((ent = getmntent(mounts))) { + while ((ent = getmntent(mounts))) { if (strncmp(ent->mnt_fsname, match, strlen(match))) continue; if (strcmp(ent->mnt_type, "iso9660") == 0) |