From 39cfa5d40b1b5ea2a060bfa51c0f573bbc1bf665 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sun, 5 Jul 2020 15:55:42 -0700 Subject: *: more small whitespace fixups nothing functionally changed --- recordmydesktop/src/rmd_rescue.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'recordmydesktop/src/rmd_rescue.c') diff --git a/recordmydesktop/src/rmd_rescue.c b/recordmydesktop/src/rmd_rescue.c index ec3130e..06d58fa 100644 --- a/recordmydesktop/src/rmd_rescue.c +++ b/recordmydesktop/src/rmd_rescue.c @@ -75,10 +75,10 @@ int rmdRescue(const char *path) { if (rmdReadSpecsFile(&pdata)) return 1; - width=((pdata.brwin.rrect.width + 15) >>4)<<4; - height=((pdata.brwin.rrect.height + 15) >>4)<<4; - offset_x=((width-pdata.brwin.rrect.width)/2)&~1; - offset_y=((height-pdata.brwin.rrect.height)/2)&~1; + width = ((pdata.brwin.rrect.width + 15) >> 4) << 4; + height = ((pdata.brwin.rrect.height + 15) >> 4) << 4; + offset_x = ((width - pdata.brwin.rrect.width) / 2) & ~1; + offset_y = ((height - pdata.brwin.rrect.height) / 2) & ~1; enc_data.yuv.y=(unsigned char *)malloc(height*width); enc_data.yuv.u=(unsigned char *)malloc(height*width/4); -- cgit v1.2.1