diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-01-04 13:04:06 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-01-04 13:04:06 +0000 |
commit | 29489545353defc776c22dc247155f699f174e31 (patch) | |
tree | 140eb44e459be608e469d2410024d37d4329c7fa /lib/ldap.c | |
parent | efb64fdf80b2246f4a1d67d220c9c16bca658e5b (diff) | |
download | curl-29489545353defc776c22dc247155f699f174e31.tar.gz |
ldap.c: Fixed compilation warning
ldap.c:89: warning: extra tokens at end of #endif directive
Diffstat (limited to 'lib/ldap.c')
-rw-r--r-- | lib/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ldap.c b/lib/ldap.c index ce586caf8..c1a347b08 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -86,7 +86,7 @@ typedef struct { TCHAR *lud_dn; #else char *lud_dn; -#endif; +#endif char **lud_attrs; int lud_scope; char *lud_filter; |