Renamed gpt_tail_writer_ecma119_writer_create() to gpt_tail_writer_create().

This commit is contained in:
Thomas Schmitt 2012-06-07 10:38:27 +02:00
parent ad251e8c7d
commit 74bc1808a1
3 changed files with 3 additions and 3 deletions

View File

@ -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 in APM requests. It determines the position of primary GPT and
backup GPT. Further it reserves blocks for the backup GPT. 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) if (ret < 0)
goto target_cleanup; goto target_cleanup;

View File

@ -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; IsoImageWriter *writer;

View File

@ -192,7 +192,7 @@ int iso_write_gpt_header_block(Ecma119Image *t, uint32_t img_blocks,
/* Creates the GPT backup tail writer. /* 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_ */ #endif /* SYSTEM_AREA_H_ */