From 68f994d51e61e584ea713b74aa634ba82ff6ba61 Mon Sep 17 00:00:00 2001 From: maya Date: Thu, 12 Jan 2017 19:02:22 +0000 Subject: [PATCH] replace old style function declaration --- lib/libarch/x86_64/x86_64_iopl.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/libarch/x86_64/x86_64_iopl.c b/lib/libarch/x86_64/x86_64_iopl.c index be2be4b1ed2b..e5d2955079ef 100644 --- a/lib/libarch/x86_64/x86_64_iopl.c +++ b/lib/libarch/x86_64/x86_64_iopl.c @@ -1,4 +1,4 @@ -/* $NetBSD: x86_64_iopl.c,v 1.2 2008/04/28 20:22:55 martin Exp $ */ +/* $NetBSD: x86_64_iopl.c,v 1.3 2017/01/12 19:02:22 maya Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -35,8 +35,7 @@ #include int -x86_64_iopl(iopl) - int iopl; +x86_64_iopl(int iopl) { struct x86_64_iopl_args p;