1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-10 05:17:59 +03:00

lxc_fuse: Move #include <fuse.h>

There is no need to include the fuse.h from the header file.
Move the include into the lxc_fuse.c then.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Michal Privoznik 2020-04-13 16:01:42 +02:00
parent cc0c775b62
commit 2543cdf982
2 changed files with 5 additions and 5 deletions

View File

@ -25,6 +25,11 @@
#include <mntent.h>
#include <unistd.h>
#if WITH_FUSE
# define FUSE_USE_VERSION 26
# include <fuse.h>
#endif
#include "lxc_fuse.h"
#include "lxc_cgroup.h"
#include "lxc_conf.h"

View File

@ -20,11 +20,6 @@
#pragma once
#define FUSE_USE_VERSION 26
#if WITH_FUSE
# include <fuse.h>
#endif
#include "virconftypes.h"