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:
parent
0447aeee00
commit
85da17577a
1 changed files with 2 additions and 2 deletions
|
@ -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! */
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue