From 13fd242ddba16bc02c1e54c7209b4be4d85ac906 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 30 Nov 2010 00:53:16 -0500 Subject: Fix win32 build of http-server.c with unicode enabled --- sample/http-server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sample/http-server.c') diff --git a/sample/http-server.c b/sample/http-server.c index e4df3efa..63e434d0 100644 --- a/sample/http-server.c +++ b/sample/http-server.c @@ -247,7 +247,7 @@ send_document_cb(struct evhttp_request *req, void *arg) "
  • %s\n", name, name);/* XXX escape this */ #ifdef WIN32 - } while (FindNextFile(d, &ent)); + } while (FindNextFileA(d, &ent)); #else } #endif -- cgit v1.2.1