aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorK. Y. Srinivasan <kys@microsoft.com>2013-04-24 10:48:54 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-04-24 12:02:36 -0400
commit0e27263926699fcbbd574cff4dd6920007a50e8a (patch)
tree39d85519e82fc0ff08f8db28ad3277d3c01f40c8
parent10b637b4c8a21b299f691cecc4b6f16f44936c6d (diff)
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>
-rw-r--r--tools/hv/hv_vss_daemon.c2
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)
85 if (mounts == NULL) 85 if (mounts == NULL)
86 return -1; 86 return -1;
87 87
88 while((ent = getmntent(mounts))) { 88 while ((ent = getmntent(mounts))) {
89 if (strncmp(ent->mnt_fsname, match, strlen(match))) 89 if (strncmp(ent->mnt_fsname, match, strlen(match)))
90 continue; 90 continue;
91 if (strcmp(ent->mnt_type, "iso9660") == 0) 91 if (strcmp(ent->mnt_type, "iso9660") == 0)