commit f11cab90fff2095713a0bd74a2db844147185463 parent 3d52f5216486f7d107327e8d184e3a06f23a08e0 Author: Christian Grothoff <christian@grothoff.org> Date: Thu, 24 Feb 2022 23:58:13 +0100 -add parens Diffstat:
| M | src/include/taler_util.h | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/include/taler_util.h b/src/include/taler_util.h @@ -125,7 +125,7 @@ TALER_b2s (const void *buf, * @param obj address of object to convert * @return string representing the binary obj buffer */ -#define TALER_B2S(obj) TALER_b2s (obj, sizeof (*obj)) +#define TALER_B2S(obj) TALER_b2s ((obj), sizeof (*(obj))) /**