From 7ea260031ebc75af99ed1b29925bf114066b4316 Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Wed, 17 Apr 2024 23:11:52 +0200 Subject: [PATCH] fixed compiler warnings. --- apps/aqhome-nodes/loop_tty_broker.c | 14 +++++++------- apps/aqhome-tool/data/watch.c | 4 +++- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/apps/aqhome-nodes/loop_tty_broker.c b/apps/aqhome-nodes/loop_tty_broker.c index 3baa70a..7ed5f07 100644 --- a/apps/aqhome-nodes/loop_tty_broker.c +++ b/apps/aqhome-nodes/loop_tty_broker.c @@ -108,9 +108,9 @@ void _processSendStatsMessage(AQHOMED *aqh, const GWEN_MSG *nodeMsg) double collisionsPercentage=0.0; double busyPercentage=0.0; - packetsOut=(double) packetsOutInt; - collisions=(double)AQH_SendStatsMsg_GetCollisions(nodeMsg); - busy=(double)AQH_SendStatsMsg_GetBusyErrors(nodeMsg); + packetsOut=/*(double)*/ packetsOutInt; + collisions=/*(double)*/ AQH_SendStatsMsg_GetCollisions(nodeMsg); + busy=/*(double)*/ AQH_SendStatsMsg_GetBusyErrors(nodeMsg); collisionsPercentage=collisions*100.0/packetsOut; busyPercentage=busy*100.0/packetsOut; @@ -136,9 +136,9 @@ void _processRecvStatsMessage(AQHOMED *aqh, const GWEN_MSG *nodeMsg) double crcErrorsPercentage=0.0; double ioErrorsPercentage=0.0; - packetsIn=(double) packetsInInt; - crcErrors=(double)AQH_RecvStatsMsg_GetCrcErrors(nodeMsg); - ioErrors=(double)AQH_RecvStatsMsg_GetIoErrors(nodeMsg); + packetsIn=/*(double)*/ packetsInInt; + crcErrors=/*(double)*/AQH_RecvStatsMsg_GetCrcErrors(nodeMsg); + ioErrors=/*(double)*/AQH_RecvStatsMsg_GetIoErrors(nodeMsg); crcErrorsPercentage=crcErrors*100.0/packetsIn; ioErrorsPercentage=ioErrors*100.0/packetsIn; @@ -155,7 +155,7 @@ void _processRecvStatsMessage(AQHOMED *aqh, const GWEN_MSG *nodeMsg) void _publishInt(AQHOMED *aqh, uint32_t uid, int valueId, const char *valueUnits, const char *valuePath, int v) { - _publishDouble(aqh, uid, valueId, valueUnits, valuePath, (double) v); + _publishDouble(aqh, uid, valueId, valueUnits, valuePath, /*(double)*/ v); } diff --git a/apps/aqhome-tool/data/watch.c b/apps/aqhome-tool/data/watch.c index 6dcbbba..3670c8e 100644 --- a/apps/aqhome-tool/data/watch.c +++ b/apps/aqhome-tool/data/watch.c @@ -213,9 +213,11 @@ void _awaitAndPrintChanges(GWEN_MSG_ENDPOINT *epTcp, int timeoutInSeconds, const } if (timeoutInSeconds) { time_t now; + double delta; now=time(NULL); - if ((int)(difftime(now, tStart))>=timeoutInSeconds) { + delta=difftime(now, tStart); + if ((int)delta>=timeoutInSeconds) { DBG_INFO(NULL, "Timeout"); break; }