summaryrefslogtreecommitdiffstats
path: root/libhb/sync.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2016-05-20 08:40:52 -0600
committerJohn Stebbins <[email protected]>2016-05-20 08:40:52 -0600
commit2fe7d668c4648ad60f3159a1f0c146eb512a9013 (patch)
tree23c9aa64e0fac7cc4d224f20b4bcb2a6cd00abc9 /libhb/sync.c
parent1e9cd570b02f9bfca8e2364ad0c083705851d6fe (diff)
sync: silence compiler warning
Diffstat (limited to 'libhb/sync.c')
-rw-r--r--libhb/sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/sync.c b/libhb/sync.c
index 689dd21a0..5d67a790b 100644
--- a/libhb/sync.c
+++ b/libhb/sync.c
@@ -1975,7 +1975,7 @@ static int mergeSubtitleOverlaps(subtitle_sanitizer_t *sanitizer)
hb_buffer_list_clear(&merged_list);
a = hb_buffer_list_head(&sanitizer->list_current);
- start = a->s.start;
+ stop = start = a->s.start;
while (start < last)
{
hb_buffer_t * merge = findOverlap(sanitizer, start, &stop);