Skip to content

Commit 1c78f64

Browse files
committed
Fix negative int pattern
1 parent 8e50828 commit 1c78f64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/zap-templates/zcl/zcl.xsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This schema describes the format of the XML files, that describe the ZCL specifi
1010
</xs:annotation>
1111
<xs:simpleType name="integerWithHex">
1212
<xs:restriction base="xs:string">
13-
<xs:pattern value="[-+]?0x[0-9A-Fa-f]+|[0-9]+"/>
13+
<xs:pattern value="[-+]?(0x[0-9A-Fa-f]+|[0-9]+)"/>
1414
</xs:restriction>
1515
</xs:simpleType>
1616
<xs:complexType name="access">

0 commit comments

Comments
 (0)