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/918f48872af3
branches: trunk
changeset: 342372:918f48872af3
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 28642b42e2c9 -r 918f48872af3 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