Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/pgoyette-compat]: src/sys/compat/netbsd32 typo: insert missing ')'



details:   https://anonhg.NetBSD.org/src/rev/a894e8ecc491
branches:  pgoyette-compat
changeset: 830794:a894e8ecc491
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Thu Sep 27 01:33:31 2018 +0000

description:
typo: insert missing ')'

diffstat:

 sys/compat/netbsd32/netbsd32_time.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (35 lines):

diff -r 49ecf014dee4 -r a894e8ecc491 sys/compat/netbsd32/netbsd32_time.c
--- a/sys/compat/netbsd32/netbsd32_time.c       Tue Sep 25 21:44:30 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_time.c       Thu Sep 27 01:33:31 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_time.c,v 1.49.12.2 2018/09/25 21:41:30 pgoyette Exp $ */
+/*     $NetBSD: netbsd32_time.c,v 1.49.12.3 2018/09/27 01:33:31 pgoyette Exp $ */
 
 /*
  * Copyright (c) 1998, 2001 Matthew R. Green
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_time.c,v 1.49.12.2 2018/09/25 21:41:30 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_time.c,v 1.49.12.3 2018/09/27 01:33:31 pgoyette Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_ntp.h"
@@ -45,6 +45,7 @@
 #include <sys/resourcevar.h>
 #include <sys/dirent.h>
 #include <sys/kauth.h>
+#include <sys/compat_stub.h>
 
 #include <compat/netbsd32/netbsd32.h>
 #include <compat/netbsd32/netbsd32_syscallargs.h>
@@ -114,7 +115,7 @@
            NULL)))
                return (error);
 
-       (*vec_ntp_adjtime1(&ntv);
+       (*vec_ntp_adjtime1)(&ntv);
 
        netbsd32_from_timex(&ntv, &ntv32);
        error = copyout(&ntv32, SCARG_P32(uap, tp), sizeof(ntv32));



Home | Main Index | Thread Index | Old Index