samples: net: big_http_download: Fix to use proper data type for sleep
Needed because of k_timeout_t conversion Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
a85d1e0e74
commit
92e8422a40
@ -29,7 +29,7 @@
|
||||
#include "ca_certificate.h"
|
||||
#endif
|
||||
|
||||
#define sleep(x) k_sleep(x * 1000)
|
||||
#define sleep(x) k_sleep(K_MSEC((x) * MSEC_PER_SEC))
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user