diff options
author | Michael Plante <michael.plante@gmail.com> | 2012-02-12 13:49:35 -0500 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2012-02-12 20:18:09 +0100 |
commit | c40f3df1efbb9232b525e5f675746762ca2304b8 (patch) | |
tree | 59032e74d7052891a9bbfdbaeb314ffca5fb3ef0 /libusb | |
parent | 5526841023101bafa280755c3bd19fc44b9c32a0 (diff) | |
download | libusb-c40f3df1efbb9232b525e5f675746762ca2304b8.tar.gz |
Windows: Fix MSVC6 IDE warning on line continuation in libusb-1.0.rc
* libusb\libusb-1.0.rc(21): Could not find the file LIBUSB_RC.
* only shows up first time after opening workspace.
* shows up on either build or clean.
* not actually due to rc.exe, but prior to it.
* probably an IDE bug.
* does not show up when running an exported makefile.
Signed-off-by: Michael Plante <michael.plante@gmail.com>
Diffstat (limited to 'libusb')
-rw-r--r-- | libusb/libusb-1.0.rc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libusb/libusb-1.0.rc b/libusb/libusb-1.0.rc index 0171f17..a59a430 100644 --- a/libusb/libusb-1.0.rc +++ b/libusb/libusb-1.0.rc @@ -12,13 +12,9 @@ #define LU_STR(s) #s #define LU_XSTR(s) LU_STR(s) #if LIBUSB_NANO > 0 -#define LIBUSB_VERSIONSTRING \ - LU_XSTR(LIBUSB_MAJOR) "." LU_XSTR(LIBUSB_MINOR) "." \ - LU_XSTR(LIBUSB_MICRO) "." LU_XSTR(LIBUSB_NANO) LIBUSB_RC "\0" +#define LIBUSB_VERSIONSTRING LU_XSTR(LIBUSB_MAJOR) "." LU_XSTR(LIBUSB_MINOR) "." LU_XSTR(LIBUSB_MICRO) "." LU_XSTR(LIBUSB_NANO) LIBUSB_RC "\0" #else -#define LIBUSB_VERSIONSTRING \ - LU_XSTR(LIBUSB_MAJOR) "." LU_XSTR(LIBUSB_MINOR) "." \ - LU_XSTR(LIBUSB_MICRO) LIBUSB_RC "\0" +#define LIBUSB_VERSIONSTRING LU_XSTR(LIBUSB_MAJOR) "." LU_XSTR(LIBUSB_MINOR) "." LU_XSTR(LIBUSB_MICRO) LIBUSB_RC "\0" #endif #endif |