scripts/uncrustify: Use 2-spaces indentation for defines too

This commit is contained in:
Marco Trevisan (Treviño)
2025-02-18 20:56:03 +01:00
committed by Marco Trevisan
parent 4dd51f38c7
commit ee73d67765
10 changed files with 90 additions and 81 deletions

View File

@@ -101,11 +101,14 @@ plot_minutiae (unsigned char *rgbdata,
{
int i;
#define write_pixel(num) do { \
rgbdata[((num) * 3)] = 0xff; \
rgbdata[((num) * 3) + 1] = 0; \
rgbdata[((num) * 3) + 2] = 0; \
} while(0)
#define write_pixel(num) \
do \
{ \
rgbdata[((num) * 3)] = 0xff; \
rgbdata[((num) * 3) + 1] = 0; \
rgbdata[((num) * 3) + 2] = 0; \
} \
while(0)
for (i = 0; i < minutiae->len; i++)
{