X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gom%2Frepository.c;h=b34081cb84f739a9801e33a0c6961a7b9533ef9a;hb=19c1913f344c4ce5a0767d5529620cd6083f892b;hp=a2f61dd6bcc60aebc1f4c3b2fd24373fe30951d8;hpb=bdf47fdee469d5a1d7ddfd06a0e4b26f3b40b0f4;p=gedcom-parse.git diff --git a/gom/repository.c b/gom/repository.c index a2f61dd..b34081c 100644 --- a/gom/repository.c +++ b/gom/repository.c @@ -52,7 +52,7 @@ void repository_add_address(Gom_ctxt ctxt, struct address* address) repo->address = address; } -void repository_add_phone(Gom_ctxt ctxt, char *phone) +void repository_add_phone(Gom_ctxt ctxt, const char *phone) { struct repository *repo = SAFE_CTXT_CAST(repository, ctxt); if (repo) { @@ -79,7 +79,7 @@ void repository_add_user_ref(Gom_ctxt ctxt, struct user_ref_number* ref) LINK_CHAIN_ELT(user_ref_number, repo->ref, ref); } -void repository_set_record_id(Gom_ctxt ctxt, char *rin) +void repository_set_record_id(Gom_ctxt ctxt, const char *rin) { struct repository *repo = SAFE_CTXT_CAST(repository, ctxt); if (repo) { @@ -129,7 +129,7 @@ struct repository* gom_get_first_repository() return gom_first_repository; } -struct repository* make_repository_record(char* xrefstr) +struct repository* make_repository_record(const char* xrefstr) { struct repository* repo = NULL; MAKE_CHAIN_ELT(repository, gom_first_repository, repo);