From 7da8ddb8a1dd7ec0d37f0aa47f2831e725595d55 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Wed, 22 Apr 2020 13:48:55 -0700 Subject: [PATCH] scoutfs: fix data.h include guard The identifier for data.h's include guard was brought over from an old file and still had the old name. Update it to reflect it's use in data, not filerw. Signed-off-by: Zach Brown --- kmod/src/data.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kmod/src/data.h b/kmod/src/data.h index 895de61b..8b58d4f6 100644 --- a/kmod/src/data.h +++ b/kmod/src/data.h @@ -1,5 +1,5 @@ -#ifndef _SCOUTFS_FILERW_H_ -#define _SCOUTFS_FILERW_H_ +#ifndef _SCOUTFS_DATA_H_ +#define _SCOUTFS_DATA_H_ struct scoutfs_lock; struct scoutfs_ioctl_data_waiting_entry;