aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-10 05:03:18 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-10 05:03:18 +0000
commitddb1262249f7d89f5f98dd513c29982e16dd78e1 (patch)
tree286b9c75fb618375106e1325240c9fd6806da4c9 /apps
parent2ef66b716adc14814560251b2df85a3f0c3599c3 (diff)
One final fix in the 1.6.1 release only; some variables the compiler
worries "may not be initialized". git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@174438 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_rpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_rpt.c b/apps/app_rpt.c
index 6357aad4f..78d0d9cba 100644
--- a/apps/app_rpt.c
+++ b/apps/app_rpt.c
@@ -14680,7 +14680,7 @@ static int rpt_manager_do_stats(struct mansession *s, const struct message *m, c
if(myrpt->remote){ /* Remote base ? */
char *loginuser, *loginlevel, *freq, *rxpl, *txpl, *modestr;
- char offset,powerlevel,rxplon,txplon,remoteon,remmode,reportfmstuff;
+ char offset = 0, powerlevel = 0, rxplon = 0, txplon = 0, remoteon, remmode = 0, reportfmstuff;
char offsetc,powerlevelc;
loginuser = loginlevel = freq = rxpl = txpl = NULL;