When building with --std=c++0x or --std=c++11, you will otherwise get
this warning:

  C++11 requires a space between literal and identifier [-Wliteral-suffix]
    ODP_VERSION_TO_STR(ODP_VERSION_API_GENERATION) "."\

Signed-off-by: Simon Kagstrom <simon.kagst...@netinsight.net>
---
 platform/linux-generic/include/api/odp_version.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/platform/linux-generic/include/api/odp_version.h 
b/platform/linux-generic/include/api/odp_version.h
index 41708ca..b3b345a 100644
--- a/platform/linux-generic/include/api/odp_version.h
+++ b/platform/linux-generic/include/api/odp_version.h
@@ -56,8 +56,8 @@ extern "C" {
 
 /** @internal API version string */
 #define ODP_VERSION_API_STR \
-ODP_VERSION_TO_STR(ODP_VERSION_API_GENERATION) "."\
-ODP_VERSION_TO_STR(ODP_VERSION_API_MAJOR) "."\
+ODP_VERSION_TO_STR(ODP_VERSION_API_GENERATION) "." \
+ODP_VERSION_TO_STR(ODP_VERSION_API_MAJOR) "." \
 ODP_VERSION_TO_STR(ODP_VERSION_API_MINOR)
 
 /**
-- 
1.9.1

_______________________________________________
lng-odp mailing list
lng-odp@lists.linaro.org
http://lists.linaro.org/mailman/listinfo/lng-odp

Reply via email to