From f9fbd7a97cae4431a64ab350c2eed7bbc0586049 Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Fri, 7 Apr 2017 17:05:27 +0200 Subject: [PATCH] pv: renamed empty buf variable (cherry picked from commit cdd7bc29a900d787b8d99f7296306f99c53a5e29) --- src/modules/pv/pv_trans.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/pv/pv_trans.c b/src/modules/pv/pv_trans.c index 25723bdfe22..ef884238383 100644 --- a/src/modules/pv/pv_trans.c +++ b/src/modules/pv/pv_trans.c @@ -50,8 +50,8 @@ #include "pv_trans.h" -static char _empty_str[2] = {0}; -static str _tr_empty = { _empty_str, 0 }; +static char _tr_empty_buf[2] = {0}; +static str _tr_empty = { _tr_empty_buf, 0 }; static str _tr_uri = {0, 0}; static struct sip_uri _tr_parsed_uri; static param_t* _tr_uri_params = NULL;