dll: fuse3: fsp_fuse3_pkgversion: bug fix

This commit is contained in:
Bill Zissimopoulos 2018-07-26 10:17:38 -07:00
parent bd53b452b2
commit 554f07a50e

View File

@ -146,7 +146,9 @@ FSP_FUSE_API int fsp_fuse3_version(struct fsp_fuse_env *env)
FSP_FUSE_API const char *fsp_fuse3_pkgversion(struct fsp_fuse_env *env)
{
#define STR(x) #x
#define STR(x) STR_(x)
#define STR_(x) #x
return STR(FUSE_MAJOR_VERSION) "." STR(FUSE_MINOR_VERSION);
#undef STR_
#undef STR
}