Skip to content

Commit 7528a84

Browse files
authored
Fix compiler warning: comparison between signed...
... and unsigned integer expressions [-Wsign-compare]
1 parent 5ce3bce commit 7528a84

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

DHT.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
#include "DHT.h"
2727

2828
#define MIN_INTERVAL 2000 /**< min interval value */
29-
#define TIMEOUT UINT32_MAX /**< Used programmatically for timeout. Not a timeout duration. Type: uint32_t. */
29+
#define TIMEOUT UINT32_MAX /**< Used programmatically for timeout. \
30+
Not a timeout duration. Type: uint32_t. */
3031

3132
/*!
3233
* @brief Instantiates a new DHT class

0 commit comments

Comments
 (0)