From 68dec8ddbca2a091b13cb9d66c93560a7827c35e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Pierre=20Andr=C3=A9?= Date: Tue, 19 Jul 2016 11:49:04 +0200 Subject: [PATCH] Renamed include guard for plugin.h to _NTFS_PLUGIN_H Be consistent with other NTFS-3G headers and use the "_NTFS_" prefix. Signed-off-by: Eric Biggers --- include/ntfs-3g/plugin.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ntfs-3g/plugin.h b/include/ntfs-3g/plugin.h index bd90213b..f4bb7b29 100644 --- a/include/ntfs-3g/plugin.h +++ b/include/ntfs-3g/plugin.h @@ -27,8 +27,8 @@ * add support for processing some type of reparse points. */ -#ifndef PLUGIN_H -#define PLUGIN_H +#ifndef _NTFS_PLUGIN_H +#define _NTFS_PLUGIN_H struct fuse_file_info; @@ -134,4 +134,4 @@ typedef struct plugin_operations { typedef const struct plugin_operations *(*plugin_init_t)(le32 tag); const struct plugin_operations *init(le32 tag); -#endif /* PLUGIN_H */ +#endif /* _NTFS_PLUGIN_H */