diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-07-09 14:48:02 -0300 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-07-09 19:54:35 +0200 |
commit | f5c90564306cd6507421935f61cb4bc9c5422052 (patch) | |
tree | b1c877570a40b299024cfcb0d9ae716bd62057e5 /src/output/plugins | |
parent | 0e39b59700c79bfd275fbe5a8ec067e749e02867 (diff) |
output/plugins/httpd/HttpdClient: fix build failure due to missing stdio.h include
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Diffstat (limited to 'src/output/plugins')
-rw-r--r-- | src/output/plugins/httpd/HttpdClient.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/output/plugins/httpd/HttpdClient.cxx b/src/output/plugins/httpd/HttpdClient.cxx index cd2adc860..3797c3d26 100644 --- a/src/output/plugins/httpd/HttpdClient.cxx +++ b/src/output/plugins/httpd/HttpdClient.cxx @@ -28,6 +28,7 @@ #include <assert.h> #include <string.h> +#include <stdio.h> HttpdClient::~HttpdClient() { |