Module Name:    src
Committed By:   msaitoh
Date:           Mon May 18 01:56:40 UTC 2015

Modified Files:
        src/sys/dev/hpc [netbsd-7]: hpcfb.c

Log Message:
 Add missing semicolon. Fix build break in last commit.


To generate a diff of this commit:
cvs rdiff -u -r1.58.34.1 -r1.58.34.2 src/sys/dev/hpc/hpcfb.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/dev/hpc/hpcfb.c
diff -u src/sys/dev/hpc/hpcfb.c:1.58.34.1 src/sys/dev/hpc/hpcfb.c:1.58.34.2
--- src/sys/dev/hpc/hpcfb.c:1.58.34.1	Sat May 16 04:06:04 2015
+++ src/sys/dev/hpc/hpcfb.c	Mon May 18 01:56:40 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: hpcfb.c,v 1.58.34.1 2015/05/16 04:06:04 snj Exp $	*/
+/*	$NetBSD: hpcfb.c,v 1.58.34.2 2015/05/18 01:56:40 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1999
@@ -43,7 +43,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hpcfb.c,v 1.58.34.1 2015/05/16 04:06:04 snj Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hpcfb.c,v 1.58.34.2 2015/05/18 01:56:40 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_hpcfb.h"
@@ -472,7 +472,7 @@ hpcfb_init(struct hpcfb_fbconf *fbconf,	
 	}
 
 	if (rasops_init(ri, HPCFB_MAX_ROW, HPCFB_MAX_COLUMN)) {
-		aprint_error_dev(dc->dc_sc->sc_dev, "rasops_init() failed!")
+		aprint_error_dev(dc->dc_sc->sc_dev, "rasops_init() failed!");
 		return -1;
 	}
 

Reply via email to