Source-Changes-HG archive

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

[src/trunk]: src/sys/fs/udf add missing ,



details:   https://anonhg.NetBSD.org/src/rev/a6f06c142351
branches:  trunk
changeset: 812514:a6f06c142351
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Dec 19 01:51:42 2015 +0000

description:
add missing ,

diffstat:

 sys/fs/udf/udf_subr.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 6f3424caaad5 -r a6f06c142351 sys/fs/udf/udf_subr.c
--- a/sys/fs/udf/udf_subr.c     Sat Dec 19 01:19:45 2015 +0000
+++ b/sys/fs/udf/udf_subr.c     Sat Dec 19 01:51:42 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_subr.c,v 1.133 2015/12/19 01:18:00 christos Exp $ */
+/* $NetBSD: udf_subr.c,v 1.134 2015/12/19 01:51:42 christos Exp $ */
 
 /*
  * Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -29,7 +29,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.133 2015/12/19 01:18:00 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.134 2015/12/19 01:51:42 christos Exp $");
 #endif /* not lint */
 
 
@@ -6463,7 +6463,7 @@
 
        /* copy out info */
        memcpy(blob, pos, inflen);
-       memset(&blob[inflen] 0, sector_size - inflen);
+       memset(&blob[inflen], 0, sector_size - inflen);
 
        return 0;
 }



Home | Main Index | Thread Index | Old Index