Fix compilation error in r335765 under gcc 4.2.1.

The anonymous object initialization introduced in r335765 was
acceptable to clang, but not gcc 4.2.1. Fix it for both.

Reported by:	jhibbits@
Pointy Hat:	myself
MFC after:	1 week
X-MFC-with:	r335765
Sponsored by:	Dell EMC
This commit is contained in:
David Bright 2018-06-28 20:37:17 +00:00
parent d01c382e91
commit 11f8e2efa8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=335776

View File

@ -58,10 +58,7 @@
.fflags = (d), \
.data = (e), \
.udata = (f), \
.ext[0] = 0, \
.ext[1] = 0, \
.ext[2] = 0, \
.ext[3] = 0, \
.ext = {0}, \
}; \
} while(0)
#else /* Pre-C99 or not STDC (e.g., C++) */