1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

use signed integers for sample data

This commit is contained in:
Steffen Vogel 2017-09-04 23:04:56 +02:00
parent 0447aeee00
commit 85da17577a

View file

@ -93,8 +93,8 @@ struct sample {
/** The values. */
union {
double f; /**< Floating point values. */
uint64_t i; /**< Integer values. */
double f; /**< Floating point values. */
int64_t i; /**< Integer values. */
} data[]; /**< Data is in host endianess! */
};