diff --git a/libisofs/ecma119.c b/libisofs/ecma119.c index ac58eb3..1505ab7 100644 --- a/libisofs/ecma119.c +++ b/libisofs/ecma119.c @@ -2033,7 +2033,7 @@ int ecma119_image_new(IsoImage *src, IsoWriteOpts *opts, Ecma119Image **img) in APM requests. It determines the position of primary GPT and backup GPT. Further it reserves blocks for the backup GPT. */ - ret = gpt_tail_writer_ecma119_writer_create(target); + ret = gpt_tail_writer_create(target); if (ret < 0) goto target_cleanup; diff --git a/libisofs/system_area.c b/libisofs/system_area.c index a153bd0..83b9d18 100644 --- a/libisofs/system_area.c +++ b/libisofs/system_area.c @@ -1812,7 +1812,7 @@ static int gpt_tail_writer_free_data(IsoImageWriter *writer) } -int gpt_tail_writer_ecma119_writer_create(Ecma119Image *target) +int gpt_tail_writer_create(Ecma119Image *target) { IsoImageWriter *writer; diff --git a/libisofs/system_area.h b/libisofs/system_area.h index 293e45f..c5c11dc 100644 --- a/libisofs/system_area.h +++ b/libisofs/system_area.h @@ -192,7 +192,7 @@ int iso_write_gpt_header_block(Ecma119Image *t, uint32_t img_blocks, /* Creates the GPT backup tail writer. */ -int gpt_tail_writer_ecma119_writer_create(Ecma119Image *target); +int gpt_tail_writer_create(Ecma119Image *target); #endif /* SYSTEM_AREA_H_ */