summaryrefslogtreecommitdiff
path: root/props.h
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2015-01-21 17:49:26 +0100
committerDavid Sterba <dsterba@suse.cz>2015-01-21 17:49:26 +0100
commit07ce7005fc81289eb4c7dde7d601be08c977b92c (patch)
treeed9be80ea3b023b552e281aa5425e4675ed32892 /props.h
parent39568fa417ceee3133a8cadae0bd1527adf61221 (diff)
downloadbtrfs-progs-07ce7005fc81289eb4c7dde7d601be08c977b92c.tar.gz
btrfs-progs: unify header file inclusion protections
There are missing ifdefs or defines with very generic names. Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'props.h')
-rw-r--r--props.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/props.h b/props.h
index faa4410..a43cb25 100644
--- a/props.h
+++ b/props.h
@@ -14,8 +14,8 @@
* Boston, MA 021110-1307, USA.
*/
-#ifndef PROPS_H_
-#define PROPS_H_
+#ifndef __BTRFS_PROPS_H__
+#define __BTRFS_PROPS_H__
enum prop_object_type {
prop_object_dev = (1 << 0),
@@ -40,4 +40,4 @@ struct prop_handler {
extern const struct prop_handler prop_handlers[];
-#endif /* PROPS_H_ */
+#endif