Introduction
Introduction Statistics Contact Development Disclaimer Help
Just silence some unused var warnings - sdhcp - simple dhcp client
git clone git://git.codemadness.org/sdhcp
Log
Files
Refs
LICENSE
---
commit 2152f4c9f5b4ec106bb76de15a61ce0e2f380131
parent 7c74f27acfe5963ecded3ca444421e691216d5e9
Author: sin <[email protected]>
Date: Wed, 14 May 2014 11:46:40 +0100
Just silence some unused var warnings
Diffstat:
M sdhcp.c | 2 ++
1 file changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/sdhcp.c b/sdhcp.c
@@ -423,9 +423,11 @@ Rebinding:
}
static void nop(int unused) {
+ (void) unused;
}
static void cleanexit(int unused) {
+ (void) unused;
dhcpsend(DHCPrelease, Unicast);
exit(EXIT_SUCCESS);
}
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.