From f50c712f401f50b8ca36addbd8440f418a9b266f Mon Sep 17 00:00:00 2001 From: Ovidiu Sas Date: Mon, 14 Mar 2016 17:07:46 -0400 Subject: [PATCH] modules/topos: fix warning: variable "ptsd" set but not used [-Wunused-but-set-variable] --- modules/topos/tps_msg.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/topos/tps_msg.c b/modules/topos/tps_msg.c index da1adc960e9..a44ff342d2a 100644 --- a/modules/topos/tps_msg.c +++ b/modules/topos/tps_msg.c @@ -489,13 +489,11 @@ int tps_response_received(sip_msg_t *msg) tps_data_t mtsd; tps_data_t stsd; tps_data_t btsd; - tps_data_t *ptsd; str lkey; memset(&mtsd, 0, sizeof(tps_data_t)); memset(&stsd, 0, sizeof(tps_data_t)); memset(&btsd, 0, sizeof(tps_data_t)); - ptsd = &mtsd; lkey = msg->callid->body;