diff options
Diffstat (limited to 'contrib/plugins/hotpages.c')
-rw-r--r-- | contrib/plugins/hotpages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/plugins/hotpages.c b/contrib/plugins/hotpages.c index 0d12910..8316ae5 100644 --- a/contrib/plugins/hotpages.c +++ b/contrib/plugins/hotpages.c @@ -169,7 +169,7 @@ int qemu_plugin_install(qemu_plugin_id_t id, const qemu_info_t *info, for (i = 0; i < argc; i++) { char *opt = argv[i]; - g_autofree char **tokens = g_strsplit(opt, "=", -1); + g_auto(GStrv) tokens = g_strsplit(opt, "=", -1); if (g_strcmp0(tokens[0], "sortby") == 0) { if (g_strcmp0(tokens[1], "reads") == 0) { |