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:
Jukka Rissanen 2020-04-06 17:44:44 +03:00
commit 92e8422a40

View file

@ -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