summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2006-09-08 11:15:05 +0000
committerphintuka <phintuka>2006-09-08 11:15:05 +0000
commit695bce8f185b37260f136db86cfd5b67e80981b0 (patch)
tree3ad01a7a4be5167492d7d42c33637f9783146481
parent9efef7b173164e326c93bb029e7b6b9f0029519b (diff)
downloadxineliboutput-695bce8f185b37260f136db86cfd5b67e80981b0.tar.gz
xineliboutput-695bce8f185b37260f136db86cfd5b67e80981b0.tar.bz2
Fixed list termination ("NULL" -> NULL ...)
-rw-r--r--xine/post.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xine/post.c b/xine/post.c
index d982bdd4..24bd99bc 100644
--- a/xine/post.c
+++ b/xine/post.c
@@ -509,7 +509,7 @@ static post_element_t **_pplugin_join_deinterlace_and_post_elements(fe_t *fe, in
{
post_element_t **post_elements;
int i = 0, j = 0, n = 0, p = 0;
- static const char *order[] = {"autocrop", "tvtime", "NULL"};
+ static const char *order[] = {"autocrop", "tvtime", NULL};
*post_elements_num = 0;
if( fe->post_video_enable )