diff mbox

hdpvr-video: cleanup signedness

Message ID 4B5AFD42.6080001@freemail.hu (mailing list archive)
State Accepted
Headers show

Commit Message

Németh Márton Jan. 23, 2010, 1:44 p.m. UTC
None
diff mbox

Patch

diff -r 2a50a0a1c951 linux/drivers/media/video/hdpvr/hdpvr-video.c
--- a/linux/drivers/media/video/hdpvr/hdpvr-video.c	Sat Jan 23 00:14:32 2010 -0200
+++ b/linux/drivers/media/video/hdpvr/hdpvr-video.c	Sat Jan 23 11:43:17 2010 +0100
@@ -302,7 +302,8 @@ 
 /* function expects dev->io_mutex to be hold by caller */
 static int hdpvr_stop_streaming(struct hdpvr_device *dev)
 {
-	uint actual_length, c = 0;
+	int actual_length;
+	uint c = 0;
 	u8 *buf;

 	if (dev->status == STATUS_IDLE)