From 33a5c4ba103750803cfcf7762b7bb30781053892 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Fri, 14 Jul 2023 18:19:26 +0200 Subject: [PATCH] spa: bluez: fix spelling of HAVE_REALLOCARRAY feature macro It should have two `R`s not three. --- spa/plugins/bluez5/bluez5-dbus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/bluez5/bluez5-dbus.c b/spa/plugins/bluez5/bluez5-dbus.c index 4e8b2f187..94680bb61 100644 --- a/spa/plugins/bluez5/bluez5-dbus.c +++ b/spa/plugins/bluez5/bluez5-dbus.c @@ -2340,7 +2340,7 @@ const struct media_codec **spa_bt_device_get_supported_media_codecs(struct spa_b if (j >= size) { const struct media_codec **p; size = size * 2; -#ifdef HAVE_REALLOCARRRAY +#ifdef HAVE_REALLOCARRAY p = reallocarray(supported_codecs, size, sizeof(const struct media_codec *)); #else p = realloc(supported_codecs, size * sizeof(const struct media_codec *));