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:20:03 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2025-09-20 19:20:03 +0200
commitb45d74b60dfb7e23911df6b0523890e42f711267 (patch)
tree42bb5764b05bd3bc5bffadb55f4375e6dce8a521 /app/bin/svgoutput.c
parent6c1a798b0302034a7fdcaf93b8f014e2e458c2a0 (diff)
parent63ec5715054be18ac4db5675e067b41c955d03b9 (diff)
Merge branch 'feature/upstream' into develop
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);