[asterisk-commits] trunk r24216 - in /trunk/pbx/ael: ael.tab.c ael.y
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Tue May 2 10:37:34 MST 2006
Author: rizzo
Date: Tue May 2 12:37:33 2006
New Revision: 24216
URL: http://svn.digium.com/view/asterisk?rev=24216&view=rev
Log:
remove useless 'extern' declaration
Modified:
trunk/pbx/ael/ael.tab.c
trunk/pbx/ael/ael.y
Modified: trunk/pbx/ael/ael.tab.c
URL: http://svn.digium.com/view/asterisk/trunk/pbx/ael/ael.tab.c?rev=24216&r1=24215&r2=24216&view=diff
==============================================================================
--- trunk/pbx/ael/ael.tab.c (original)
+++ trunk/pbx/ael/ael.tab.c Tue May 2 12:37:33 2006
@@ -3366,7 +3366,6 @@
static struct pval *npval(pvaltype type, int first_line, int last_line,
int first_column, int last_column)
{
- extern char *my_file;
pval *z = calloc(1, sizeof(struct pval));
z->type = type;
z->startline = first_line;
Modified: trunk/pbx/ael/ael.y
URL: http://svn.digium.com/view/asterisk/trunk/pbx/ael/ael.y?rev=24216&r1=24215&r2=24216&view=diff
==============================================================================
--- trunk/pbx/ael/ael.y (original)
+++ trunk/pbx/ael/ael.y Tue May 2 12:37:33 2006
@@ -830,7 +830,6 @@
static struct pval *npval(pvaltype type, int first_line, int last_line,
int first_column, int last_column)
{
- extern char *my_file;
pval *z = calloc(1, sizeof(struct pval));
z->type = type;
z->startline = first_line;
More information about the asterisk-commits
mailing list