From adb02119b7abfc531f1646f0241304dbc349b058 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fukan=20Korkmazt=C3=BCrk?= Date: Wed, 5 Jan 2022 06:24:22 -0500 Subject: [PATCH] conf: eliminate an unnecessary narrowing conversion --- src/pipewire/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipewire/conf.c b/src/pipewire/conf.c index eee8c40c1..8fc473441 100644 --- a/src/pipewire/conf.c +++ b/src/pipewire/conf.c @@ -49,7 +49,7 @@ PW_LOG_TOPIC_EXTERN(log_conf); #define PW_LOG_TOPIC_DEFAULT log_conf -static int make_path(char *path, int size, const char *paths[]) +static int make_path(char *path, size_t size, const char *paths[]) { int i, len; char *p = path;