On 17.04.23 07:04, Alistair Francis wrote:
+ +/* #define Z069_DEBUG 1 */ + +#ifdef Z069_DEBUG +#define z069_debug(fmt, ...) \ + fprintf(stderr, "wdt_z069: %s: "fmt, __func__, ##__VA_ARGS__) +#else +#define z069_debug(fmt, ...) +#endifSame comment from the previous versions about using traces instead of macro prints
Of cause, you're right. I'm stupid, sorry. Johannes