diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-09-26 20:06:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2019-09-26 20:06:49 +0000 |
commit | 495e78645e74ab7ef0323fb1b403e3a881a73db7 (patch) | |
tree | bdd086cec4a7daac2b517aa8364ea33acbb4919b /ucs2-interface/ucs-xml/UcsXml.c | |
parent | 9f03774097a6bf531d08356da4ccc2a5af6ad47a (diff) | |
parent | 02b34d1e71ccadfa97fa5412e635b41142c5bd20 (diff) |
Merge "unicens: support reproducible build"
Diffstat (limited to 'ucs2-interface/ucs-xml/UcsXml.c')
-rw-r--r-- | ucs2-interface/ucs-xml/UcsXml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucs2-interface/ucs-xml/UcsXml.c b/ucs2-interface/ucs-xml/UcsXml.c index 7715cd4..5c8c346 100644 --- a/ucs2-interface/ucs-xml/UcsXml.c +++ b/ucs2-interface/ucs-xml/UcsXml.c @@ -39,7 +39,8 @@ /************************************************************************/ #define COMPILETIME_CHECK(cond) (void)sizeof(int[2 * !!(cond) - 1]) -#define RETURN_ASSERT(result) { UcsXml_CB_OnError("Assertion in file=%s, line=%d", 2, __FILE__, __LINE__); return result; } +#define __FILENAME__ (__builtin_strrchr(__FILE__, '/') ? __builtin_strrchr(__FILE__, '/') + 1 : __FILE__) +#define RETURN_ASSERT(result) { UcsXml_CB_OnError("Assertion in file=%s, line=%d", 2, __FILENAME__, __LINE__); return result; } #define MISC_HB(value) ((uint8_t)((uint16_t)(value) >> 8)) #define MISC_LB(value) ((uint8_t)((uint16_t)(value) & (uint16_t)0xFF)) #define ROUTE_AUTO_ID_START (0x8000) @@ -1636,4 +1637,3 @@ static bool IsAutoRouteId(uint16_t id, PrivateData_t *priv) assert(NULL != priv); return (id >= ROUTE_AUTO_ID_START && id <= priv->autoRouteId); } - |