From 26ebcbe822e0636cb909d2ce28dd1b1fc010e4fa Mon Sep 17 00:00:00 2001 From: dtucker Date: Tue, 29 Nov 2022 22:41:14 +0000 Subject: [PATCH] Add void to client_repledge args to fix compiler warning. ok djm@ --- usr.bin/ssh/clientloop.c | 6 +++--- 1 file 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 * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -767,8 +767,8 @@ can_update_hostkeys(void) return 1; } -void -client_repledge() +static void +client_repledge(void) { debug3_f("enter"); -- 2.20.1