mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-24 13:12:03 +00:00
[core,miniupnpc,modules] Fix not used variables
This commit is contained in:
+2
-3
@@ -1173,9 +1173,8 @@ SWITCH_MODULE_RUNTIME_FUNCTION(softtimer_runtime)
|
||||
} else {
|
||||
if (tfd > -1 && globals.RUNNING == 1) {
|
||||
uint64_t exp;
|
||||
int r;
|
||||
r = read(tfd, &exp, sizeof(exp));
|
||||
r++;
|
||||
read(tfd, &exp, sizeof(exp));
|
||||
(void)exp;
|
||||
} else {
|
||||
switch_time_t timediff = runtime.reference - ts;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user