From a6378664db84986809b3eb843cb0bfad01b75269 Mon Sep 17 00:00:00 2001 From: wangdi Date: Thu, 12 Aug 2004 04:24:12 +0000 Subject: [PATCH] minor build fix for smfs --- lustre/include/linux/lustre_smfs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lustre/include/linux/lustre_smfs.h b/lustre/include/linux/lustre_smfs.h index fd5e7f2..a534162 100644 --- a/lustre/include/linux/lustre_smfs.h +++ b/lustre/include/linux/lustre_smfs.h @@ -402,7 +402,8 @@ static inline int smfs_get_dentry_name_index(struct dentry *dentry, static inline void smfs_free_dentry_name(struct qstr *str) { - OBD_FREE(str->name, str->len + 1); + char *name = (char*)str->name; + OBD_FREE(name, str->len + 1); } static inline struct dentry *pre_smfs_dentry(struct dentry *parent_dentry, -- 1.8.3.1