diff options
author | Doron Behar <doron.behar@gmail.com> | 2018-09-26 15:26:54 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-26 14:33:34 +0200 |
commit | 063f9a4c8bab1e0bd844729124e8b7a4674682ba (patch) | |
tree | 16e8dddfca38979e3de51b88cc22049e8a0ba52c /docs/examples | |
parent | 776f0708b2ae11938be74560c08decdd926085be (diff) | |
download | curl-063f9a4c8bab1e0bd844729124e8b7a4674682ba.tar.gz |
example/htmltidy: fix include paths of tidy libraries
Closes #3050
Diffstat (limited to 'docs/examples')
-rw-r--r-- | docs/examples/htmltidy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/htmltidy.c b/docs/examples/htmltidy.c index 02d01f40b..2f4500f51 100644 --- a/docs/examples/htmltidy.c +++ b/docs/examples/htmltidy.c @@ -28,8 +28,8 @@ */ #include <stdio.h> -#include <tidy/tidy.h> -#include <tidy/buffio.h> +#include <tidy.h> +#include <tidybuffio.h> #include <curl/curl.h> /* curl write callback, to fill tidy's input buffer... */ |