From 6de2dde76253e56ef2dc7aa03ee709a519576dcb Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 17 Jun 2010 10:36:39 -0700 Subject: ceph: remove leading _ from macro Reported-by: Markus Elfring Signed-off-by: Sage Weil --- wireshark/ceph/ceph_fs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wireshark') diff --git a/wireshark/ceph/ceph_fs.h b/wireshark/ceph/ceph_fs.h index 56af192cb43..0fab7732ebf 100644 --- a/wireshark/ceph/ceph_fs.h +++ b/wireshark/ceph/ceph_fs.h @@ -22,8 +22,8 @@ #define CEPH_VERSION_MINOR 16 #define CEPH_VERSION_PATCH 1 -#define _CEPH_STRINGIFY(x) #x -#define CEPH_STRINGIFY(x) _CEPH_STRINGIFY(x) +#define CEPH_STRINGIFY_(x) #x +#define CEPH_STRINGIFY(x) CEPH_STRINGIFY_(x) #define CEPH_MAKE_VERSION(x, y, z) CEPH_STRINGIFY(x) "." CEPH_STRINGIFY(y) \ "." CEPH_STRINGIFY(z) #define CEPH_VERSION CEPH_MAKE_VERSION(CEPH_VERSION_MAJOR, \ -- cgit v1.2.1