aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/hiperfifo.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-12-18 17:12:44 +0100
committerDaniel Stenberg <daniel@haxx.se>2010-12-18 17:13:24 +0100
commitbcfb9ea34cc7cddbbf74376aa16043681e4745a7 (patch)
tree3f48ec7815f8d302124ab4791aa5a8e2bc2b917e /docs/examples/hiperfifo.c
parentf0aad0089e7113312d59bf5aad0f566653662b8e (diff)
examples: socket type cleanup
Diffstat (limited to 'docs/examples/hiperfifo.c')
-rw-r--r--docs/examples/hiperfifo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/hiperfifo.c b/docs/examples/hiperfifo.c
index c9096871b..a885c0ce4 100644
--- a/docs/examples/hiperfifo.c
+++ b/docs/examples/hiperfifo.c
@@ -350,7 +350,7 @@ static int init_fifo (GlobalInfo *g)
{
struct stat st;
static const char *fifo = "hiper.fifo";
- int sockfd;
+ curl_socket_t sockfd;
fprintf(MSG_OUT, "Creating named pipe \"%s\"\n", fifo);
if (lstat (fifo, &st) == 0) {