aboutsummaryrefslogtreecommitdiffstats
path: root/res/ael/pval.c
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-21 20:55:44 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-21 20:55:44 +0000
commit86d0d7a8c6d9e4ec24bc220ae562a408e990c9bf (patch)
tree1e8925a71aecaec3525132a23433f12f9919c4ec /res/ael/pval.c
parent2bd12b8be0fecd829acae8d1f0747ca9c6a89a07 (diff)
As per 10472, mvanbaak thought the generated code would look better this way.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@80217 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/ael/pval.c')
-rw-r--r--res/ael/pval.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/res/ael/pval.c b/res/ael/pval.c
index d2c37149e..4245d42db 100644
--- a/res/ael/pval.c
+++ b/res/ael/pval.c
@@ -345,8 +345,9 @@ static void print_pval(FILE *fin, pval *item, int depth)
if ( item->u3.hints )
fprintf(fin,"hints(%s) ", item->u3.hints);
- fprintf(fin,"%s => \n", item->u1.str);
+ fprintf(fin,"%s => ", item->u1.str);
print_pval_list(fin,item->u2.statements,depth+1);
+ fprintf(fin,"\n");
break;
case PV_IGNOREPAT: