From aa4542d8f4be4dc230c231de6de211c6bbc3d75e Mon Sep 17 00:00:00 2001 From: "cantab.net!aia21" Date: Tue, 13 Jul 2004 15:16:57 +0000 Subject: [PATCH] Fix Yuval's last patch: runlist_element is not a struct it is a typedef so renamed it to the struct name which is _runlist_element. (Logical change 1.456) --- include/ntfs/debug.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ntfs/debug.h b/include/ntfs/debug.h index 6003e7b4..13bed18b 100644 --- a/include/ntfs/debug.h +++ b/include/ntfs/debug.h @@ -30,7 +30,7 @@ # include #endif -struct runlist_element; +struct _runlist_element; #ifdef DEBUG @@ -66,14 +66,14 @@ static __inline__ void Dperror(const char *s) errno = eo; } -extern void ntfs_debug_runlist_dump(const runlist_element *rl); +extern void ntfs_debug_runlist_dump(const struct _runlist_element *rl); #else /* if !DEBUG */ static __inline__ void Dprintf(const char *fmt __attribute__((unused)), ...) {} static __inline__ void Dputs(const char *s __attribute__((unused))) {} static __inline__ void Dperror(const char *s __attribute__((unused))) {} -static __inline__ void ntfs_debug_runlist_dump(const runlist_element *rl __attribute__((unused))) {} +static __inline__ void ntfs_debug_runlist_dump(const struct _runlist_element *rl __attribute__((unused))) {} #endif /* !DEBUG */