Skip to content

Commit

Permalink
Fix negative int pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarcosb committed Sep 20, 2024
1 parent 8e50828 commit 1c78f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/zap-templates/zcl/zcl.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This schema describes the format of the XML files, that describe the ZCL specifi
</xs:annotation>
<xs:simpleType name="integerWithHex">
<xs:restriction base="xs:string">
<xs:pattern value="[-+]?0x[0-9A-Fa-f]+|[0-9]+"/>
<xs:pattern value="[-+]?(0x[0-9A-Fa-f]+|[0-9]+)"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="access">
Expand Down

0 comments on commit 1c78f64

Please sign in to comment.