- rename clean_up in tune2fs and mke2fs to be prefixed with their applet names.

Purely cosmetic to ease readability.
This commit is contained in:
Bernhard Reutner-Fischer
2006-03-30 13:54:30 +00:00
parent 214744dba1
commit 1f6dc6d358
2 changed files with 4 additions and 4 deletions

View File

@ -1199,7 +1199,7 @@ BLOCKSIZE_ERROR:
return 1;
}
static void clean_up(void)
static void mke2fs_clean_up(void)
{
if (ENABLE_FEATURE_CLEAN_UP && journal_device) free(journal_device);
}
@ -1214,7 +1214,7 @@ int mke2fs_main (int argc, char *argv[])
io_manager io_ptr;
if (ENABLE_FEATURE_CLEAN_UP)
atexit(clean_up);
atexit(mke2fs_clean_up);
if(!PRS(argc, argv))
return 0;