From: dtucker Date: Tue, 29 Nov 2022 22:41:14 +0000 (+0000) Subject: Add void to client_repledge args to fix compiler warning. ok djm@ X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=26ebcbe822e0636cb909d2ce28dd1b1fc010e4fa;p=openbsd Add void to client_repledge args to fix compiler warning. ok djm@ --- 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");