aboutsummaryrefslogtreecommitdiff
path: root/fsdev/9p-marshal.c
diff options
context:
space:
mode:
authorChristian Schoenebeck <qemu_oss@crudebyte.com>2021-10-01 16:27:29 +0200
committerChristian Schoenebeck <qemu_oss@crudebyte.com>2021-10-27 14:45:22 +0200
commit42bdeb04b6a4bf3e54f4d7f87193803268ba8255 (patch)
tree550db2463fb3787e96d2b8aafa92b4254f4aceab /fsdev/9p-marshal.c
parentc0451f0bc4210d262268ff51c053a9277f20f862 (diff)
9pfs: make V9fsString usable via P9Array API
Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com> Message-Id: <ce9f7a0a63585dc27f4545c485109efbec1251da.1633097129.git.qemu_oss@crudebyte.com>
Diffstat (limited to 'fsdev/9p-marshal.c')
-rw-r--r--fsdev/9p-marshal.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fsdev/9p-marshal.c b/fsdev/9p-marshal.c
index a01bba6908..51881fe220 100644
--- a/fsdev/9p-marshal.c
+++ b/fsdev/9p-marshal.c
@@ -18,6 +18,8 @@
#include "9p-marshal.h"
+P9ARRAY_DEFINE_TYPE(V9fsString, v9fs_string_free);
+
void v9fs_string_free(V9fsString *str)
{
g_free(str->data);