diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2022-11-29 22:41:15 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2022-11-29 22:41:15 +0000 |
commit | bf821aa3edf32cb5dc9539af1b3ba0b263297e4b (patch) | |
tree | e27788abce59f8ad3c899f940461424323dddf7c | |
parent | 3ad89389f60bb6f55eed7828114c36ae3dcca850 (diff) |
Add void to client_repledge args to fix compiler warning. ok djm@
-rw-r--r-- | usr.bin/ssh/clientloop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index f747202940d..5b1d5d894af 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.384 2022/11/28 01:38:22 djm Exp $ */ +/* $OpenBSD: clientloop.c,v 1.385 2022/11/29 22:41:14 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -767,8 +767,8 @@ can_update_hostkeys(void) return 1; } -void -client_repledge() +static void +client_repledge(void) { debug3_f("enter"); |