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

fpga: fix comparison of signed/unsigned ints

This commit is contained in:
Steffen Vogel 2020-07-03 10:04:51 +02:00
parent eb1c7536c6
commit 547ff5e199

View file

@ -273,7 +273,7 @@ int fpga_stop(struct node *n)
int fpga_read(struct node *n, struct sample *smps[], unsigned cnt, unsigned *release)
{
int read;
unsigned read;
struct fpga *f = (struct fpga *) n->_vd;
struct sample *smp = smps[0];