diff options
author | MaxXor <admin@maxxor.org> | 2017-08-30 21:13:02 +0200 |
---|---|---|
committer | MaxXor <admin@maxxor.org> | 2017-08-30 21:13:02 +0200 |
commit | b338dad2410b5e6cb1c811589f01a991766e7768 (patch) | |
tree | ae8fcc85d4a97038d78be66effe977fbbcceb115 /external/miniupnpc/minihttptestserver.c | |
parent | Merge pull request #2349 (diff) | |
download | monero-b338dad2410b5e6cb1c811589f01a991766e7768.tar.xz |
update miniupnpc
Diffstat (limited to 'external/miniupnpc/minihttptestserver.c')
-rw-r--r-- | external/miniupnpc/minihttptestserver.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/external/miniupnpc/minihttptestserver.c b/external/miniupnpc/minihttptestserver.c index 1848bde26..e4cdc203c 100644 --- a/external/miniupnpc/minihttptestserver.c +++ b/external/miniupnpc/minihttptestserver.c @@ -1,7 +1,7 @@ /* $Id: minihttptestserver.c,v 1.19 2015/11/17 09:07:17 nanard Exp $ */ /* Project : miniUPnP * Author : Thomas Bernard - * Copyright (c) 2011-2015 Thomas Bernard + * Copyright (c) 2011-2016 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. * */ @@ -611,7 +611,7 @@ int main(int argc, char * * argv) { if(pid < 0) { perror("wait"); } else { - printf("child(%d) terminated with status %d\n", pid, status); + printf("child(%d) terminated with status %d\n", (int)pid, status); } --child_to_wait_for; } @@ -648,7 +648,7 @@ int main(int argc, char * * argv) { if(pid < 0) { perror("wait"); } else { - printf("child(%d) terminated with status %d\n", pid, status); + printf("child(%d) terminated with status %d\n", (int)pid, status); } --child_to_wait_for; } |