QEMU uses 4-space indentation. Fix this now so checkpatch.pl is happy with future code changes.
Signed-off-by: Stefan Hajnoczi <stefa...@redhat.com> --- block/gluster.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/block/gluster.c b/block/gluster.c index 1a22f29..516a1e1 100644 --- a/block/gluster.c +++ b/block/gluster.c @@ -226,12 +226,12 @@ static glfs_t *glfs_find_preopened(const char *volume) { ListElement *entry = NULL; - QLIST_FOREACH(entry, &glfs_list, list) { + QLIST_FOREACH(entry, &glfs_list, list) { if (strcmp(entry->saved.volume, volume) == 0) { entry->saved.ref++; return entry->saved.fs; } - } + } return NULL; } -- 2.9.3