diff options
author | Richard Hughes <richard@hughsie.com> | 2018-09-11 10:14:06 +0100 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2019-11-15 16:44:35 +0000 |
commit | 22d3321aeadfa77054653a1a092a5ffb053692e6 (patch) | |
tree | d7c2c2fbe7c00b25036e0c51b6020f2040d9141c | |
parent | 5aae4d3e20bcd791e37fe68c667ceb7968f5a113 (diff) | |
download | gusb-22d3321aeadfa77054653a1a092a5ffb053692e6.tar.gz |
trivial: Don't use brackets for G_USB_x_VERSION
This allows us to join them as strings if required.
-rw-r--r-- | gusb/gusb-version.h.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gusb/gusb-version.h.in b/gusb/gusb-version.h.in index 051ac8c..8502d8b 100644 --- a/gusb/gusb-version.h.in +++ b/gusb/gusb-version.h.in @@ -41,21 +41,21 @@ * * The compile-time major version */ -#define G_USB_MAJOR_VERSION (@G_USB_MAJOR_VERSION@) +#define G_USB_MAJOR_VERSION @G_USB_MAJOR_VERSION@ /** * G_USB_MINOR_VERSION: * * The compile-time minor version */ -#define G_USB_MINOR_VERSION (@G_USB_MINOR_VERSION@) +#define G_USB_MINOR_VERSION @G_USB_MINOR_VERSION@ /** * G_USB_MICRO_VERSION: * * The compile-time micro version */ -#define G_USB_MICRO_VERSION (@G_USB_MICRO_VERSION@) +#define G_USB_MICRO_VERSION @G_USB_MICRO_VERSION@ /** * G_USB_CHECK_VERSION: |