Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Feb 2009 20:42:51 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r188406 - head/sys/fs/udf
Message-ID:  <200902092042.n19KgpbY070604@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902092042.n19KgpbY070604>