Message ID | 1450687321-12381-4-git-send-email-yangds.fnst@cn.fujitsu.com |
---|---|
State | Not Applicable |
Delegated to: | David Oberhollenzer |
Headers | show |
diff --git a/ubifs-utils/mkfs.ubifs/lpt.c b/ubifs-utils/mkfs.ubifs/lpt.c index cee221c..100d747 100644 --- a/ubifs-utils/mkfs.ubifs/lpt.c +++ b/ubifs-utils/mkfs.ubifs/lpt.c @@ -20,7 +20,16 @@ * Artem Bityutskiy */ -#include "mkfs.ubifs.h" +#include "ubifs_common.h" + +/* common.h requires the PROGRAM_NAME macro */ +#define PROGRAM_NAME "ubifs-lpt" +#include "common.h" + +#include "crc16.h" +#include "ubifs.h" +#include "lpt.h" +#include "io.h" /** * do_calc_lpt_geom - calculate sizes for the LPT area.
As we have a ubifs_common.h and a seperate io lib, then remove the including of mkfs.ubifs.h in lpt.c Signed-off-by: Dongsheng Yang <yangds.fnst@cn.fujitsu.com> --- ubifs-utils/mkfs.ubifs/lpt.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-)