summaryrefslogtreecommitdiff
path: root/app/bin/svgoutput.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2025-09-20 19:19:34 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2025-09-20 19:19:34 +0200
commite7d20cf352688bf717a01f4e6d9e6f497c2bea4c (patch)
treecfd2ef9b569f49af985a6f1ec44f2614f63c8e78 /app/bin/svgoutput.c
parenta14a7a0ccc9de76aeab0b2e4bbf58f1a79deedc2 (diff)
New upstream version 5.3.1Beta2upstream/5.3.1Beta2
Diffstat (limited to 'app/bin/svgoutput.c')
-rw-r--r--app/bin/svgoutput.c5
1 files changed, 2 insertions, 3 deletions
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);