diff options
author | Toomas Soome <tsoome@me.com> | 2020-05-19 11:18:14 +0300 |
---|---|---|
committer | Toomas Soome <tsoome@me.com> | 2020-06-02 01:17:32 +0300 |
commit | fdf1a8710a94b4953ba782ed5bdc1549b0356ddc (patch) | |
tree | c7286ff2ac0cc913d0d548abba6d15178ed3aaad | |
parent | e86372a01d2d16a5dd4a64e144ed978ba17fe7dd (diff) | |
download | illumos-joyent-fdf1a8710a94b4953ba782ed5bdc1549b0356ddc.tar.gz |
12804 sysevent.h: C++11 requires a space between string literal and macro
Reviewed by: Yuri Pankov <ypankov@tintri.com>
Reviewed by: Vitaliy Gusev <gusev.vitaliy@icloud.com>
Approved by: Robert Mustacchi <rm@fingolfin.org>
-rw-r--r-- | usr/src/uts/common/sys/sysevent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/sys/sysevent.h b/usr/src/uts/common/sys/sysevent.h index 392b426977..c2be00ad27 100644 --- a/usr/src/uts/common/sys/sysevent.h +++ b/usr/src/uts/common/sys/sysevent.h @@ -73,7 +73,7 @@ extern "C" { #define SE_KERN_PUB "kern:" #define SUNW_KERN_PUB SUNW_VENDOR ":" SE_KERN_PUB #define SUNW_USR_PUB SUNW_VENDOR ":" SE_USR_PUB -#define ILLUMOS_KERN_PUB ILLUMOS_VENDOR":"SE_KERN_PUB +#define ILLUMOS_KERN_PUB ILLUMOS_VENDOR ":" SE_KERN_PUB /* * Event header and attribute value limits |