aboutsummaryrefslogtreecommitdiffstats
path: root/src/fuvst
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2023-01-20 18:03:44 +0100
committerAndreas Eversberg <jolly@eversberg.eu>2023-01-21 15:15:39 +0100
commitf4abbaf027aa428199b38003fd13ca6e91a4e5af (patch)
treeca7825dc27e44805eba26154d72c0523b6d74c5a /src/fuvst
parent3bc3e67abbc0a2d7c84c9f91e72adca24b1fed9a (diff)
Make libtimer to be osmo_* compatible in some places
Diffstat (limited to 'src/fuvst')
-rwxr-xr-xsrc/fuvst/fuvst.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fuvst/fuvst.c b/src/fuvst/fuvst.c
index f86b0a8..ae825fc 100755
--- a/src/fuvst/fuvst.c
+++ b/src/fuvst/fuvst.c
@@ -591,9 +591,9 @@ static void destroy_transaction(transaction_t *trans)
}
/* Timeout handling */
-void trans_timeout(struct timer *timer)
+void trans_timeout(void *data)
{
- transaction_t *trans = (transaction_t *)timer->priv;
+ transaction_t *trans = data;
PDEBUG(DTRANS, DEBUG_NOTICE, "Releasing transaction due to timeout.\n");
if (trans->callref)