Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30853
b: refs/heads/master
c: c78059f
h: refs/heads/master
i:
  30851: 2a70f56
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Jun 27, 2006
1 parent 5c5a88e commit 6c8beb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ce4260c39d7e6d97aad525e5ce726b755ee0dcb2
refs/heads/master: c78059f0a948404fb515db6be4bca5ec93eecd2a
6 changes: 3 additions & 3 deletions trunk/drivers/media/video/pvrusb2/pvrusb2-encoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ static int pvr2_encoder_cmd(void *ctxt,
" - too many input arguments"
" (was given %u limit %u)",
arg_cnt_send,
(sizeof(wrData)/sizeof(wrData[0])) - 4);
(unsigned int)(sizeof(wrData)/sizeof(wrData[0])) - 4);
return -EINVAL;
}

Expand All @@ -187,7 +187,7 @@ static int pvr2_encoder_cmd(void *ctxt,
" - too many return arguments"
" (was given %u limit %u)",
arg_cnt_recv,
(sizeof(rdData)/sizeof(rdData[0])) - 4);
(unsigned int)(sizeof(rdData)/sizeof(rdData[0])) - 4);
return -EINVAL;
}

Expand Down Expand Up @@ -275,7 +275,7 @@ static int pvr2_encoder_vcmd(struct pvr2_hdw *hdw, int cmd,
"Failed to write cx23416 command"
" - too many arguments"
" (was given %u limit %u)",
args,sizeof(data)/sizeof(data[0]));
args,(unsigned int)(sizeof(data)/sizeof(data[0])));
return -EINVAL;
}

Expand Down

0 comments on commit 6c8beb2

Please sign in to comment.