xorg: fix a warning

This commit is contained in:
Jay Sorg 2014-03-16 15:14:48 -07:00
parent 40ec8a1714
commit 5fe484012f

View File

@ -148,9 +148,6 @@ rdpCapture0(RegionPtr in_reg, RegionPtr out_reg,
src_rect = src + src_offset;
dst_rect = dst + dst_offset;
/* bytes per line */
bytes = width * bytespp;
/* copy one line at a time */
for (j = 0; j < height; j++)
{
@ -188,9 +185,6 @@ rdpCapture0(RegionPtr in_reg, RegionPtr out_reg,
src_rect = src + src_offset;
dst_rect = dst + dst_offset;
/* bytes per line */
bytes = width * bytespp;
/* copy one line at a time */
for (j = 0; j < height; j++)
{
@ -228,9 +222,6 @@ rdpCapture0(RegionPtr in_reg, RegionPtr out_reg,
src_rect = src + src_offset;
dst_rect = dst + dst_offset;
/* bytes per line */
bytes = width * bytespp;
/* copy one line at a time */
for (j = 0; j < height; j++)
{