diff options
author | Eric Andersen | 2003-06-20 09:20:28 +0000 |
---|---|---|
committer | Eric Andersen | 2003-06-20 09:20:28 +0000 |
commit | 1b2e7c3b2a8e14b5657844365fd2b61fc88bb99e (patch) | |
tree | a93d30eec67c5bd326185864e373e32a5d9a9124 | |
parent | c9e702492431593a22be3c3e5ab57643d478f77d (diff) | |
download | busybox-1b2e7c3b2a8e14b5657844365fd2b61fc88bb99e.zip busybox-1b2e7c3b2a8e14b5657844365fd2b61fc88bb99e.tar.gz |
Make gcc not whine about "deprecated use of label at end of compound statement"
-rw-r--r-- | networking/udhcp/dhcpc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index 4612c41..d18cb42 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c @@ -105,6 +105,7 @@ static void perform_renew(void) state = INIT_SELECTING; break; case INIT_SELECTING: + break; } /* start things over */ |