From 4ccc2dc7638cf95786e1489ae8939361b5a1bf20 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 11 Jul 2020 11:02:09 -0700 Subject: make_dummy_pointer: more formatting cleanups Nothing functionally changed --- recordmydesktop/src/rmd_make_dummy_pointer.c | 59 ++++++++++++++-------------- 1 file changed, 29 insertions(+), 30 deletions(-) (limited to 'recordmydesktop/src') diff --git a/recordmydesktop/src/rmd_make_dummy_pointer.c b/recordmydesktop/src/rmd_make_dummy_pointer.c index ba7fb0f..25bb027 100644 --- a/recordmydesktop/src/rmd_make_dummy_pointer.c +++ b/recordmydesktop/src/rmd_make_dummy_pointer.c @@ -40,12 +40,11 @@ unsigned char *rmdMakeDummyPointer( Display *display, int type, unsigned char *npxl) { - unsigned long bpixel = XBlackPixel(display, specs->screen); - unsigned long wpixel = XWhitePixel(display, specs->screen); - int i,k,o='.'; - unsigned long b=(color)?'w':'b', - w=(color)?'b':'w'; - char pmask[1][16][16]={{ + unsigned long bpixel = XBlackPixel(display, specs->screen); + unsigned long wpixel = XWhitePixel(display, specs->screen); + int i, k, o = '.'; + unsigned long b = color ? 'w' : 'b', w = color ? 'b' : 'w'; + char pmask[1][16][16] = {{ {w,w,o,o,o,o,o,o,o,o,o,o,o,o,o,o}, {w,b,w,o,o,o,o,o,o,o,o,o,o,o,o,o}, {w,b,b,w,o,o,o,o,o,o,o,o,o,o,o,o}, @@ -63,31 +62,31 @@ unsigned char *rmdMakeDummyPointer( Display *display, {o,o,o,o,o,w,b,b,w,o,o,o,o,o,o,o}, {o,o,o,o,o,o,w,w,o,o,o,o,o,o,o,o}} }; - unsigned char *ret=malloc(size*sizeof(char[size*4])); - unsigned char wp[4]={ (wpixel ^ 0xff000000) >> 24, - (wpixel ^ 0x00ff0000) >> 16, - (wpixel ^ 0x0000ff00) >> 8, - (wpixel ^ 0x000000ff) }; - unsigned char bp[4]={ (bpixel ^ 0xff000000) >> 24, - (bpixel ^ 0x00ff0000) >> 16, - (bpixel ^ 0x0000ff00) >> 8, - (bpixel ^ 0x000000ff) }; + unsigned char *ret = malloc(size * sizeof(char[size * 4])); + unsigned char wp[4] = { + (wpixel ^ 0xff000000) >> 24, + (wpixel ^ 0x00ff0000) >> 16, + (wpixel ^ 0x0000ff00) >> 8, + (wpixel ^ 0x000000ff) + }; + unsigned char bp[4] = { + (bpixel ^ 0xff000000) >> 24, + (bpixel ^ 0x00ff0000) >> 16, + (bpixel ^ 0x0000ff00) >> 8, + (bpixel ^ 0x000000ff) + }; - *npxl=((wp[0]-1)!=bp[0])?wp[0]-100:wp[0]-102; - for (i=0;i