svn commit: r188406 - head/sys/fs/udf

John Baldwin jhb at FreeBSD.org
Mon Feb 9 12:42:52 PST 2009


Author: jhb
Date: Mon Feb  9 20:42:51 2009
New Revision: 188406
URL: http://svn.freebsd.org/changeset/base/188406

Log:
  Use the same style as the rest of the file for the optional data string
  after each path component rather than a GCC-ism.

Modified:
  head/sys/fs/udf/ecma167-udf.h

Modified: head/sys/fs/udf/ecma167-udf.h
==============================================================================
--- head/sys/fs/udf/ecma167-udf.h	Mon Feb  9 20:13:55 2009	(r188405)
+++ head/sys/fs/udf/ecma167-udf.h	Mon Feb  9 20:42:51 2009	(r188406)
@@ -359,7 +359,7 @@ struct path_component {
 	uint8_t			type;
 	uint8_t			length;
 	uint16_t		version;
-	uint8_t			identifier[0];
+	uint8_t			identifier[1];
 } __packed;
 #define	UDF_PATH_ROOT		2
 #define	UDF_PATH_DOTDOT		3


More information about the svn-src-head mailing list