Date: Mon, 7 Dec 2015 17:24:55 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291948 - head/sys/amd64/amd64 Message-ID: <201512071724.tB7HOt4x018540@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kib Date: Mon Dec 7 17:24:55 2015 New Revision: 291948 URL: https://svnweb.freebsd.org/changeset/base/291948 Log: Use ANSI C definition. MFC after: 1 week Modified: head/sys/amd64/amd64/machdep.c Modified: head/sys/amd64/amd64/machdep.c ============================================================================== --- head/sys/amd64/amd64/machdep.c Mon Dec 7 16:27:11 2015 (r291947) +++ head/sys/amd64/amd64/machdep.c Mon Dec 7 17:24:55 2015 (r291948) @@ -798,12 +798,7 @@ struct soft_segment_descriptor gdt_segs[ }; void -setidt(idx, func, typ, dpl, ist) - int idx; - inthand_t *func; - int typ; - int dpl; - int ist; +setidt(int idx, inthand_t *func, int typ, int dpl, int ist) { struct gate_descriptor *ip;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512071724.tB7HOt4x018540>