[vlc-devel] [PATCH 05/11] demux: subtitle: Fix spelling of 'subtract'
Sebastian Ramacher
sramacher at debian.org
Tue Sep 26 23:19:50 CEST 2017
Signed-off-by: Sebastian Ramacher <sramacher at debian.org>
---
modules/demux/subtitle.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/demux/subtitle.c b/modules/demux/subtitle.c
index 71302807e4..89f1198114 100644
--- a/modules/demux/subtitle.c
+++ b/modules/demux/subtitle.c
@@ -919,7 +919,7 @@ static int Demux( demux_t *p_demux )
static int subtitle_cmp( const void *first, const void *second )
{
int64_t result = ((subtitle_t *)(first))->i_start - ((subtitle_t *)(second))->i_start;
- /* Return -1, 0 ,1, and not directly substraction
+ /* Return -1, 0 ,1, and not directly subtraction
* as result can be > INT_MAX */
return result == 0 ? 0 : result > 0 ? 1 : -1;
}
--
2.14.2
More information about the vlc-devel
mailing list