From: c vw Date: Sun, 23 May 2021 10:24:08 +0000 (+0200) Subject: Enable long lines when parsing property file X-Git-Url: https://git.rkrishnan.org/listings/vdrive/index.php?a=commitdiff_plain;h=d52e1394939cef308c50e30ff086fdab8db73176;p=pihpsdr.git Enable long lines when parsing property file --- 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");