From 8d8b53331f7cd6fea8ddf81eae1e87e70fa7a719 Mon Sep 17 00:00:00 2001 From: "(none)!yura" <(none)!yura> Date: Wed, 22 Dec 2004 16:34:02 +0000 Subject: [PATCH] Fix error message in NAttrSet##flag: should not be called for not data attributes. (Logical change 1.649) --- include/ntfs/attrib.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/ntfs/attrib.h b/include/ntfs/attrib.h index 12048a93..3b4787e5 100644 --- a/include/ntfs/attrib.h +++ b/include/ntfs/attrib.h @@ -214,8 +214,9 @@ static inline void NAttrSet##flag(ntfs_attr *na) \ if (na->type == AT_DATA && na->name == AT_UNNAMED) \ NInoSet##flag(na->ni); \ else \ - Dprintf("%s(): BUG! Called for named data " \ - "attribute.\n", __FUNCTION__); \ + Dprintf("%s(): BUG! Should be called only for " \ + "unnamed data attribute.\n", \ + __FUNCTION__); \ } \ static inline void NAttrClear##flag(ntfs_attr *na) \ { \