From: Peter Verthez Date: Sun, 25 Aug 2002 13:47:29 +0000 (+0000) Subject: Correction in callback signature. X-Git-Url: https://git.dlugolecki.net.pl/?a=commitdiff_plain;ds=sidebyside;h=a50b439ceeca23ee33893de9ceff30b32eb83b81;p=gedcom-parse.git Correction in callback signature. --- diff --git a/t/standalone.c b/t/standalone.c index 68ebb18..f035d78 100644 --- a/t/standalone.c +++ b/t/standalone.c @@ -67,7 +67,7 @@ void show_help () printf(" -q No output to standard output\n"); } -Gedcom_ctxt header_start(int level, Gedcom_val xref, char *tag, +Gedcom_ctxt header_start(Gedcom_rec rec, int level, Gedcom_val xref, char *tag, char *raw_value, int tag_value, Gedcom_val parsed_value) { @@ -75,7 +75,7 @@ Gedcom_ctxt header_start(int level, Gedcom_val xref, char *tag, return (Gedcom_ctxt)1; } -void header_end(Gedcom_ctxt self) +void header_end(Gedcom_rec rec, Gedcom_ctxt self) { output(1, "Header end, context is %d\n", (int)self); }