summaryrefslogtreecommitdiff
path: root/utils/frame.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2009-08-01 01:03:07 +0000
committerKevin P. Fleming <kpfleming@digium.com>2009-08-01 01:03:07 +0000
commited2a3cedd1f786d496b487b197c6c3a27c5a8fef (patch)
treeb2a0c47ec4376a446a2451c23df6b65c06c7eff6 /utils/frame.c
parent68a05b14c6f4cc2428c198f3e90331308a42b39d (diff)
Merged revisions 209759 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r209759 | kpfleming | 2009-07-31 19:52:00 -0500 (Fri, 31 Jul 2009) | 7 lines Minor changes inspired by testing with latest GCC. The latest GCC (what will become 4.5.x) has a few new warnings, that in these cases found some either downright buggy code, or at least seriously poorly designed code that could be improved. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@209760 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils/frame.c')
-rw-r--r--utils/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/frame.c b/utils/frame.c
index abc3a3000..2900cb065 100644
--- a/utils/frame.c
+++ b/utils/frame.c
@@ -744,7 +744,7 @@ void checknoargs( int argcount, char *args[])
void parseargs( int argcount, char *args[], int fileswitch)
{
char *filename;
- int tempint;
+ int tempint = 0;
if ((fileswitch & 1) != 0) /* If getting infile */
in = NULL;