Module Name: src Committed By: christos Date: Thu Apr 17 18:17:09 UTC 2014
Modified Files: src/sys/dev/ic: aic79xx.c Log Message: put back missing arg To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/sys/dev/ic/aic79xx.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/ic/aic79xx.c diff -u src/sys/dev/ic/aic79xx.c:1.48 src/sys/dev/ic/aic79xx.c:1.49 --- src/sys/dev/ic/aic79xx.c:1.48 Thu Apr 17 12:04:47 2014 +++ src/sys/dev/ic/aic79xx.c Thu Apr 17 14:17:09 2014 @@ -1,4 +1,4 @@ -/* $NetBSD: aic79xx.c,v 1.48 2014/04/17 16:04:47 christos Exp $ */ +/* $NetBSD: aic79xx.c,v 1.49 2014/04/17 18:17:09 christos Exp $ */ /* * Core routines and tables shareable across OS platforms. @@ -49,7 +49,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.48 2014/04/17 16:04:47 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.49 2014/04/17 18:17:09 christos Exp $"); #include <dev/ic/aic79xx_osm.h> #include <dev/ic/aic79xx_inline.h> @@ -8609,7 +8609,7 @@ ahd_print_register(ahd_reg_parse_entry_t if (table == NULL) { if (printed < sizeof(line)) printed += snprintf(&line[printed], - (sizeof line) - printed, + (sizeof line) - printed, " "); printf("%s", line); if (cur_column != NULL) *cur_column += printed;