apfs: rename macro for #include guard in object.h

By mistake, the macro guard of object.h was given a name that is prone
to collision.  Rename it to specify the module.

Fixes: 303360577a ("apfs: move object code to separate files")
Signed-off-by: Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
This commit is contained in:
Ernesto A. Fernández
2019-02-13 13:39:18 -03:00
parent 5a89c2b807
commit 5f7efae269
+3 -3
View File
@@ -5,8 +5,8 @@
* Copyright (C) 2018 Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
*/
#ifndef _OBJECT_H
#define _OBJECT_H
#ifndef _APFS_OBJECT_H
#define _APFS_OBJECT_H
#include <linux/types.h>
@@ -90,4 +90,4 @@ struct apfs_object {
extern int apfs_obj_verify_csum(struct super_block *sb,
struct apfs_obj_phys *obj);
#endif /* _OBJECT_H */
#endif /* _APFS_OBJECT_H */