lib: Downgrade BUG* assertions to work-around crashes #2

Same as b1ac865abd but for the drivers
API.
This commit is contained in:
Bastien Nocera 2018-07-16 16:07:25 +02:00
parent b9e5b3a55c
commit 29d3541b74

View file

@ -42,8 +42,14 @@
#define fp_warn g_warning
#define fp_err g_error
#define BUG_ON(condition) g_assert(!(condition))
#define BUG() g_assert_not_reached()
#define BUG_ON(condition) G_STMT_START \
if (condition) { \
char *s; \
s = g_strconcat ("BUG: (", #condition, ")", NULL); \
g_warning ("%s: %s() %s:%d", s, G_STRFUNC, __FILE__, __LINE__); \
g_free (s); \
} G_STMT_END
#define BUG() BUG_ON(1)
enum fp_dev_state {
DEV_STATE_INITIAL = 0,