X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom%2Fgedcom.y;h=43811029a08739c5864e784fd103ae741cf3856f;hb=5fe34c1f751845fb0912834069c8e357a4cc0d6d;hp=b10e0c24e7e1b4e87686ac9fb0adbd3acc01efb6;hpb=fffe9618ff8a5cfcac207f231b531615dfb0e38f;p=gedcom-parse.git diff --git a/gedcom/gedcom.y b/gedcom/gedcom.y index b10e0c2..4381102 100644 --- a/gedcom/gedcom.y +++ b/gedcom/gedcom.y @@ -162,7 +162,7 @@ char *line_item_buf_ptr; /* These are defined at the bottom of the file */ void push_countarray(); -void set_parenttag(char* tag); +void set_parenttag(const char* tag); char* get_parenttag(int offset); void set_parentctxt(Gedcom_ctxt ctxt); Gedcom_ctxt get_parentctxt(int offset); @@ -3816,7 +3816,7 @@ void push_countarray() } } -void set_parenttag(char* tag) +void set_parenttag(const char* tag) { strncpy(tag_stack[count_level+1], tag, MAXSTDTAGLEN+1); }