changeset 25680:866022c27d67

Remove a cast useless since r24425.
author reimar
date Sun, 13 Jan 2008 10:01:27 +0000
parents 12fcf17e83e0
children 355f24f329d4
files loader/dshow/DS_Filter.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/loader/dshow/DS_Filter.c	Sun Jan 13 09:39:28 2008 +0000
+++ b/loader/dshow/DS_Filter.c	Sun Jan 13 10:01:27 2008 +0000
@@ -217,7 +217,7 @@
 	for (i = 0; i < fetched; i++)
 	{
 	    PIN_DIRECTION direction = -1;
-	    array[i]->vt->QueryDirection(array[i], (PIN_DIRECTION*)&direction);
+	    array[i]->vt->QueryDirection(array[i], &direction);
 	    if (!This->m_pInputPin && direction == PINDIR_INPUT)
 	    {
 		This->m_pInputPin = array[i];