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)edge.strict_endians
parent
2198f29e89
commit
aa4542d8f4
|
|
@ -30,7 +30,7 @@
|
||||||
# include <stdio.h>
|
# include <stdio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct runlist_element;
|
struct _runlist_element;
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
|
|
||||||
|
|
@ -66,14 +66,14 @@ static __inline__ void Dperror(const char *s)
|
||||||
errno = eo;
|
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 */
|
#else /* if !DEBUG */
|
||||||
|
|
||||||
static __inline__ void Dprintf(const char *fmt __attribute__((unused)), ...) {}
|
static __inline__ void Dprintf(const char *fmt __attribute__((unused)), ...) {}
|
||||||
static __inline__ void Dputs(const char *s __attribute__((unused))) {}
|
static __inline__ void Dputs(const char *s __attribute__((unused))) {}
|
||||||
static __inline__ void Dperror(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 */
|
#endif /* !DEBUG */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue