Skip to content

Commit 7906cb5

Browse files
committed
ST: Fix build warnings
1 parent d94921b commit 7906cb5

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

trunk/3rdparty/st-srs/sched.c

+7-2
Original file line numberDiff line numberDiff line change
@@ -503,10 +503,15 @@ void _st_del_sleep_q(_st_thread_t *thread)
503503
void _st_vp_check_clock(void)
504504
{
505505
_st_thread_t *thread;
506-
st_utime_t elapsed, now;
507-
506+
st_utime_t now;
507+
#if defined(DEBUG) && defined(DEBUG_STATS)
508+
st_utime_t elapsed;
509+
#endif
510+
508511
now = st_utime();
512+
#if defined(DEBUG) && defined(DEBUG_STATS)
509513
elapsed = now < _ST_LAST_CLOCK? 0 : now - _ST_LAST_CLOCK; // Might step back.
514+
#endif
510515
_ST_LAST_CLOCK = now;
511516

512517
#if defined(DEBUG) && defined(DEBUG_STATS)

0 commit comments

Comments
 (0)