Module Name: src
Committed By: christos
Date: Sun Oct 9 14:41:47 UTC 2016
Modified Files:
src/sys/arch/dreamcast/dev/g2: g2rtc.c
Log Message:
PR/51540: Henning Petersen: replace , with ;
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/dreamcast/dev/g2/g2rtc.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/dreamcast/dev/g2/g2rtc.c
diff -u src/sys/arch/dreamcast/dev/g2/g2rtc.c:1.7 src/sys/arch/dreamcast/dev/g2/g2rtc.c:1.8
--- src/sys/arch/dreamcast/dev/g2/g2rtc.c:1.7 Sun Nov 16 21:15:48 2014
+++ src/sys/arch/dreamcast/dev/g2/g2rtc.c Sun Oct 9 10:41:47 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: g2rtc.c,v 1.7 2014/11/17 02:15:48 christos Exp $ */
+/* $NetBSD: g2rtc.c,v 1.8 2016/10/09 14:41:47 christos Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: g2rtc.c,v 1.7 2014/11/17 02:15:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: g2rtc.c,v 1.8 2016/10/09 14:41:47 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -99,8 +99,8 @@ g2rtc_attach(device_t parent, device_t s
tch = &sc->sc_tch;
tch->cookie = sc;
- tch->todr_gettime = g2rtc_todr_gettime,
- tch->todr_settime = g2rtc_todr_settime,
+ tch->todr_gettime = g2rtc_todr_gettime;
+ tch->todr_settime = g2rtc_todr_settime;
todr_attach(tch);
}