diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-29 22:40:38 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-29 22:40:38 +0000 |
commit | 098bcdd8bbb6c02cf88729675670c9cd62b2ab81 (patch) | |
tree | 3ae1d186947cfeb44d9bb756aaa50d110df87852 /libc/misc/glob/glob.c | |
parent | 3e0a1f38828a309fda3e9b89bb2e9ffa5ba6387d (diff) |
- fix compilation of GNU glob with !LFS
Sounds like a typo, really
Diffstat (limited to 'libc/misc/glob/glob.c')
-rw-r--r-- | libc/misc/glob/glob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/glob/glob.c b/libc/misc/glob/glob.c index f510a7b52..178b4271a 100644 --- a/libc/misc/glob/glob.c +++ b/libc/misc/glob/glob.c @@ -361,7 +361,7 @@ static int glob_in_dir (const char *pattern, const char *directory, int flags, { const char *name; size_t len; -#if !defined COMPILE_GLOB64 +#if defined COMPILE_GLOB64 struct dirent64 *d; union { |