add "static" for some variable definitions

Signed-off-by: Huawei Xie <huawei.xie at intel.com>
---
 lib/librte_vhost/vhost-net-cdev.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/librte_vhost/vhost-net-cdev.c 
b/lib/librte_vhost/vhost-net-cdev.c
index 4dbd295..ce9f4ae 100644
--- a/lib/librte_vhost/vhost-net-cdev.c
+++ b/lib/librte_vhost/vhost-net-cdev.c
@@ -50,10 +50,10 @@
 #define FUSE_OPT_FORE          "-f\0\0"
 #define FUSE_OPT_NOMULTI       "-s\0\0"

-const uint32_t default_major = 231;
-const uint32_t default_minor = 1;
-const char             cuse_device_name[]      = "/dev/cuse";
-const char             default_cdev[] = "vhost-net";
+static const uint32_t  default_major = 231;
+static const uint32_t  default_minor = 1;
+static const char              cuse_device_name[]      = "/dev/cuse";
+static const char              default_cdev[] = "vhost-net";

 static struct fuse_session                     *session;
 static struct vhost_net_device_ops     const *ops;
-- 
1.8.1.4

Reply via email to