diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2008-10-28 19:51:04 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2008-10-28 19:51:04 +0000 |
commit | 6cdd067fafbc1b18a98948ac4db4869644eef9ab (patch) | |
tree | d5aae1c0248a1ebfaed41364cc02361fdc0fbc94 /src | |
parent | 0989cd358aae91067b20a37d45dca4a29696e37a (diff) |
curlx.h isn't a system include file so it gets double quotes
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 1e06ef067..6b57efce3 100644 --- a/src/main.c +++ b/src/main.c @@ -97,7 +97,7 @@ #define ENABLE_CURLX_PRINTF /* make the curlx header define all printf() functions to use the curlx_* versions instead */ -#include <curlx.h> /* header from the libcurl directory */ +#include "curlx.h" /* header from the libcurl directory */ #if defined(CURL_DOES_CONVERSIONS) && defined(HAVE_ICONV) #include <iconv.h> |