Tito sent in a few patches converting instances of CONFIG_FEATURE_CLEAN_UP to

ENABLE_FEATURE_CLEAN_UP.
This commit is contained in:
Rob Landley
2005-09-08 03:11:58 +00:00
parent 02eb934b0f
commit 658d2cf986
4 changed files with 16 additions and 16 deletions

View File

@ -47,9 +47,9 @@ freeramdisk_main(int argc, char **argv)
fd = bb_xopen(argv[1], O_RDWR);
result = ioctl(fd, BLKFLSBUF);
#ifdef CONFIG_FEATURE_CLEAN_UP
close(fd);
#endif
if (ENABLE_FEATURE_CLEAN_UP) close(fd);
if (result < 0) {
bb_perror_msg_and_die("failed ioctl on %s", argv[1]);
}