From 4bb5a9397366f6c773f221f31966ba7cfaffd8a3 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Sat, 3 Nov 2018 06:13:28 +0200 Subject: simulate mmap access --- src/util/util.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/util/util.h') diff --git a/src/util/util.h b/src/util/util.h index fe3f50c..a6defc3 100644 --- a/src/util/util.h +++ b/src/util/util.h @@ -22,6 +22,7 @@ do_debug(void) #define WARNX(x, ...) do { if (do_debug()) warnx("asound: %s " x, __func__, ##__VA_ARGS__); } while (0) #define ERRX1(x, y) do { errx(x, "asound: %s %s", __func__, y); } while (0) #define ERRX(x, y, ...) do { errx(x, "asound: %s " y, __func__, ##__VA_ARGS__); } while (0) +#define ERR1(x, y) do { err(x, "asound: %s %s", __func__, y); } while (0) #define ERR(x, y, ...) do { err(x, "asound: %s " y, __func__, ##__VA_ARGS__); } while (0) #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) -- cgit v1.2.3