summaryrefslogtreecommitdiff
path: root/include/dlt/dlt_common.h
diff options
context:
space:
mode:
authorLassi Marttala <lassi.lm.marttala@partner.bmw.com>2012-01-26 12:16:53 +0100
committerLassi Marttala <lassi.lm.marttala@partner.bmw.com>2012-01-26 12:16:53 +0100
commit3b61b813a1453df72c1e2dc4cb9892a79f2a5861 (patch)
tree3f29a17920df301f967ff341482c36be5a4aa63a /include/dlt/dlt_common.h
parent3c0d62da8e873b064cc2cc59a63dd34a60d96e4f (diff)
downloadDLT-daemon-3b61b813a1453df72c1e2dc4cb9892a79f2a5861.tar.gz
[GSW-141] Tracefile content stored different under Ubuntu 64 bit version
compared to Ubuntu/Win 32 Bit version Modified DltStorageHeader to use int32_t instead of time_t.
Diffstat (limited to 'include/dlt/dlt_common.h')
-rwxr-xr-xinclude/dlt/dlt_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dlt/dlt_common.h b/include/dlt/dlt_common.h
index 2a320fe..468b17b 100755
--- a/include/dlt/dlt_common.h
+++ b/include/dlt/dlt_common.h
@@ -336,7 +336,7 @@ typedef char ID4[DLT_ID_SIZE];
typedef struct
{
char pattern[DLT_ID_SIZE]; /**< This pattern should be DLT0x01 */
- time_t seconds; /**< seconds since 1.1.1970 */
+ int32_t seconds; /**< seconds since 1.1.1970 */
int32_t microseconds; /**< Microseconds */
char ecu[DLT_ID_SIZE]; /**< The ECU id is added, if it is not already in the DLT message itself */
} PACKED DltStorageHeader;