From d52e1394939cef308c50e30ff086fdab8db73176 Mon Sep 17 00:00:00 2001
From: c vw <dl1ycf@darc.de>
Date: Sun, 23 May 2021 12:24:08 +0200
Subject: [PATCH] Enable long lines when parsing property file

---
 property.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/property.c b/property.c
index 923daba..7209fb8 100644
--- a/property.c
+++ b/property.c
@@ -48,7 +48,7 @@ g_print("clearProperties\n");
 * @param filename
 */
 void loadProperties(char* filename) {
-    char string[80];
+    char string[256];  // pulseaudio names can be VERY long
     char* name;
     char* value;
     FILE* f=fopen(filename,"r");
-- 
2.45.2