diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-09-14 21:04:12 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-09-14 21:04:12 +0200 |
commit | 13a263894ae13460803d2f7fb1ec3efadaeb79d1 (patch) | |
tree | 42c42df9e482324d27d72d1b4c5ead405eaec0e9 /external/miniupnpc/minihttptestserver.c | |
parent | Merge pull request #2438 (diff) | |
parent | update miniupnpc (diff) | |
download | monero-13a263894ae13460803d2f7fb1ec3efadaeb79d1.tar.xz |
Merge pull request #2378
b338dad2 update miniupnpc (MaxXor)
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; } |