Module Name:    src
Committed By:   christos
Date:           Wed Jun 17 00:18:35 UTC 2015

Modified Files:
        src/sbin/fsck_lfs: segwrite.c

Log Message:
add missing ;


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sbin/fsck_lfs/segwrite.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/fsck_lfs/segwrite.c
diff -u src/sbin/fsck_lfs/segwrite.c:1.30 src/sbin/fsck_lfs/segwrite.c:1.31
--- src/sbin/fsck_lfs/segwrite.c:1.30	Tue Jun 16 19:18:55 2015
+++ src/sbin/fsck_lfs/segwrite.c	Tue Jun 16 20:18:35 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: segwrite.c,v 1.30 2015/06/16 23:18:55 christos Exp $ */
+/* $NetBSD: segwrite.c,v 1.31 2015/06/17 00:18:35 christos Exp $ */
 /*-
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -905,7 +905,7 @@ lfs_seglock(struct lfs * fs, unsigned lo
 	sp->bpp = emalloc(fs->lfs_ssize * sizeof(struct ubuf *));
 	if (!sp->bpp)
 		err(!preen, "Could not allocate %zu bytes",
-		    (size_t)(fs->lfs_ssize * sizeof(struct ubuf *)))
+		    (size_t)(fs->lfs_ssize * sizeof(struct ubuf *)));
 	sp->seg_flags = flags;
 	sp->vp = NULL;
 	sp->seg_iocount = 0;

Reply via email to