summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2018-09-26 15:26:54 +0300
committerDaniel Stenberg <daniel@haxx.se>2018-09-26 14:33:34 +0200
commit063f9a4c8bab1e0bd844729124e8b7a4674682ba (patch)
tree16e8dddfca38979e3de51b88cc22049e8a0ba52c
parent776f0708b2ae11938be74560c08decdd926085be (diff)
downloadcurl-063f9a4c8bab1e0bd844729124e8b7a4674682ba.tar.gz
example/htmltidy: fix include paths of tidy libraries
Closes #3050
-rw-r--r--docs/examples/htmltidy.c4
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... */