From e7d20cf352688bf717a01f4e6d9e6f497c2bea4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 20 Sep 2025 19:19:34 +0200 Subject: New upstream version 5.3.1Beta2 --- app/bin/svgoutput.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'app/bin/svgoutput.c') diff --git a/app/bin/svgoutput.c b/app/bin/svgoutput.c index e4ff66b..0074a43 100644 --- a/app/bin/svgoutput.c +++ b/app/bin/svgoutput.c @@ -331,7 +331,7 @@ static drawCmd_t svgD = { /** * Creates valid identifier from a string. Whitespaces are removed - * and characters are prepended to make sure the i starts with + * and characters are prepended to make sure the id starts with * valid chars. * https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/id * @@ -346,7 +346,7 @@ CreateValidId(char *base) const char *idHead = "id"; char *out = MyMalloc(strlen(idHead) + strlen(base) + 1); char *tmp; - int j; + size_t j; strcpy(out, idHead); j = strlen(out); @@ -428,7 +428,6 @@ static int DoExportSVGTracks( char ** fileName, void * data) { - DynString command = NaS; SVGDocument *svg; SVGParent *svgData; BOOL_T all = (selectedTrackCount == 0); -- cgit v1.2.3