From: dtucker@openbsd.org Date: Tue, 29 Nov 2022 22:41:14 +0000 (+0000) Subject: upstream: Add void to client_repledge args to fix compiler warning. ok djm@ X-Git-Tag: V_9_2_P1~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a1805d532616233dd6072e5cd273b96dd3062e6;p=thirdparty%2Fopenssh-portable.git upstream: Add void to client_repledge args to fix compiler warning. ok djm@ OpenBSD-Commit-ID: 7e964a641ce4a0a0a11f047953b29929d7a4b866 --- diff --git a/clientloop.c b/clientloop.c index 98bb7f785..c337de2cb 100644 --- a/clientloop.c +++ b/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 @@ -776,8 +776,8 @@ can_update_hostkeys(void) return 1; } -void -client_repledge() +static void +client_repledge(void) { debug3_f("enter");