From 5088e3709d7629eaa234315a02c1093a5d32562d Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Fri, 26 Nov 2010 17:35:48 +0100 Subject: xattr: fix compiler warning: enumerated type mixed with another type --- src/xattr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xattr.c b/src/xattr.c index 3fc264a7e..3af3282a2 100644 --- a/src/xattr.c +++ b/src/xattr.c @@ -40,7 +40,7 @@ static const struct xattr_mapping { */ { "user.xdg.origin.url", CURLINFO_EFFECTIVE_URL }, { "user.mime_type", CURLINFO_CONTENT_TYPE }, - { NULL, 0 } /* last element, abort loop here */ + { NULL, CURLINFO_NONE } /* last element, abort loop here */ }; /* store metadata from the curl request alongside the downloaded -- cgit v1.2.3