Fix sign-conversion warning on gcc when compiling to raspberry pi 2 (#2308)
JerryScript-DCO-1.0-Signed-off-by: Istvan Miklos imiklos2@inf.u-szeged.hu
This commit is contained in:
+1
-1
@@ -259,7 +259,7 @@ void jerry_port_sleep (uint32_t sleep_time)
|
|||||||
#ifdef HAVE_TIME_H
|
#ifdef HAVE_TIME_H
|
||||||
nanosleep (&(const struct timespec)
|
nanosleep (&(const struct timespec)
|
||||||
{
|
{
|
||||||
sleep_time / 1000, (sleep_time % 1000) * 1000000L /* Seconds, nanoseconds */
|
(time_t) sleep_time / 1000, ((long int) sleep_time % 1000) * 1000000L /* Seconds, nanoseconds */
|
||||||
}
|
}
|
||||||
, NULL);
|
, NULL);
|
||||||
#elif defined (HAVE_UNISTD_H)
|
#elif defined (HAVE_UNISTD_H)
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ void jerry_port_sleep (uint32_t sleep_time)
|
|||||||
#ifdef HAVE_TIME_H
|
#ifdef HAVE_TIME_H
|
||||||
nanosleep (&(const struct timespec)
|
nanosleep (&(const struct timespec)
|
||||||
{
|
{
|
||||||
sleep_time / 1000, (sleep_time % 1000) * 1000000L /* Seconds, nanoseconds */
|
(time_t) sleep_time / 1000, ((long int) sleep_time % 1000) * 1000000L /* Seconds, nanoseconds */
|
||||||
}
|
}
|
||||||
, NULL);
|
, NULL);
|
||||||
#elif defined (HAVE_UNISTD_H)
|
#elif defined (HAVE_UNISTD_H)
|
||||||
|
|||||||
Reference in New Issue
Block a user