Skip to content

Commit 7727299

Browse files
committed
fix: add missing {
1 parent a821fcf commit 7727299

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.pre-commit-config.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ repos:
66
hooks:
77
- id: go-fmt
88
- id: go-vet
9-
- id: go-imports
109
- id: golangci-lint
11-
- id: go-critic
1210
- id: go-unit-tests
1311
- id: go-build
1412
- id: go-mod-tidy

pkg/scte35/segmentation_descriptor.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ func (sd *SegmentationDescriptor) length() int {
537537

538538
// table returns the tabular description of this SegmentationDescriptor.
539539
func (sd *SegmentationDescriptor) writeTo(t *table) {
540-
t.row(0, "segmentation_descriptor()", nil)
540+
t.row(0, "segmentation_descriptor() {", nil)
541541
t.row(1, "splice_descriptor_tag", fmt.Sprintf("%#02x", sd.Tag()))
542542
t.row(1, "descriptor_length", sd.length())
543543
t.row(1, "identifier", fmt.Sprintf("%#08x (%s)", CUEIdentifier, CUEIASCII))

0 commit comments

Comments
 (0)