summaryrefslogtreecommitdiff
path: root/include/dlt/dlt_common.h
diff options
context:
space:
mode:
authorLassi Marttala <lassi.lm.marttala@partner.bmw.com>2012-01-26 13:27:22 +0100
committerLassi Marttala <lassi.lm.marttala@partner.bmw.com>2012-01-26 13:27:22 +0100
commit018e5821b627e25734d1672afda32abbd1748368 (patch)
tree88c38aa479d44e2679cbba2fde2e44a14e909056 /include/dlt/dlt_common.h
parent3b61b813a1453df72c1e2dc4cb9892a79f2a5861 (diff)
downloadDLT-daemon-018e5821b627e25734d1672afda32abbd1748368.tar.gz
Changed to uint32_t to match the specification.
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 468b17b..41a9820 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 */
- int32_t seconds; /**< seconds since 1.1.1970 */
+ uint32_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;