Fix indentation issues with uncrustify-0.76.0

Apparently older version didn't find this indentation issues
This commit is contained in:
Vasily Khoruzhick
2023-01-08 23:36:18 -08:00
parent 89509c76f4
commit a5d52eb853
10 changed files with 92 additions and 92 deletions

View File

@@ -80,12 +80,12 @@
* Uses fp_err() to print an error if the @condition is true.
*/
#define BUG_ON(condition) G_STMT_START \
if (condition) { \
char *s; \
s = g_strconcat ("BUG: (", #condition, ")", NULL); \
fp_err ("%s: %s() %s:%d", s, G_STRFUNC, __FILE__, __LINE__); \
g_free (s); \
} G_STMT_END
if (condition) { \
char *s; \
s = g_strconcat ("BUG: (", #condition, ")", NULL); \
fp_err ("%s: %s() %s:%d", s, G_STRFUNC, __FILE__, __LINE__); \
g_free (s); \
} G_STMT_END
/**
* BUG: