Skip to content
Snippets Groups Projects
Commit 22e13675 authored by Xinhao Zhang's avatar Xinhao Zhang Committed by Christian Schoenebeck
Browse files

hw/9pfs : add space before the open parenthesis '('


Fix code style. Space required before the open parenthesis '('.

Signed-off-by: default avatarXinhao Zhang <zhangxinhao1@huawei.com>
Signed-off-by: default avatarKai Deng <dengkai1@huawei.com>
Reported-by: default avatarEuler Robot <euler.robot@huawei.com>
Reviewed-by: default avatarGreg Kurz <groug@kaod.org>
Message-Id: <20201030043515.1030223-3-zhangxinhao1@huawei.com>
Signed-off-by: default avatarChristian Schoenebeck <qemu_oss@crudebyte.com>
parent 487729e9
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ static ssize_t __readlink(V9fsState *s, V9fsPath *path, V9fsString *buf)
ssize_t len, maxlen = PATH_MAX;
buf->data = g_malloc(PATH_MAX);
for(;;) {
for (;;) {
len = s->ops->readlink(&s->ctx, path, buf->data, maxlen);
if (len < 0) {
g_free(buf->data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment