소스 검색

Enforce 4 digits in XML representation of vendor and device ids

Suren A. Chilingaryan 8 년 전
부모
커밋
bf64cc22b9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      xml/devices.xsd

+ 1 - 1
xml/devices.xsd

@@ -4,7 +4,7 @@
 
   <xsd:simpleType name="hex16_t">
     <xsd:restriction base="xsd:string">
-      <xsd:pattern value="([a-fA-F0-9]){1,4}"/>
+      <xsd:pattern value="([a-fA-F0-9]){4}"/>
     </xsd:restriction>
   </xsd:simpleType>