summaryrefslogtreecommitdiff
path: root/source3/aparser/parsetree.awk
diff options
context:
space:
mode:
Diffstat (limited to 'source3/aparser/parsetree.awk')
-rw-r--r--source3/aparser/parsetree.awk3
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/aparser/parsetree.awk b/source3/aparser/parsetree.awk
index cd4e442c9b..e99793f516 100644
--- a/source3/aparser/parsetree.awk
+++ b/source3/aparser/parsetree.awk
@@ -20,6 +20,9 @@ function start_struct(name)
function end_struct()
{
+ printf("struct %s with %d elements\n",
+ structs[num_structs, "name"],
+ structs[num_structs, "num_elems"]);
num_structs++;
current_struct="";
}