summaryrefslogtreecommitdiff
path: root/Build/source/utils/t1utils/TLPATCHES/patch-07-warnings
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/t1utils/TLPATCHES/patch-07-warnings')
-rw-r--r--Build/source/utils/t1utils/TLPATCHES/patch-07-warnings25
1 files changed, 25 insertions, 0 deletions
diff --git a/Build/source/utils/t1utils/TLPATCHES/patch-07-warnings b/Build/source/utils/t1utils/TLPATCHES/patch-07-warnings
new file mode 100644
index 00000000000..26f81378cba
--- /dev/null
+++ b/Build/source/utils/t1utils/TLPATCHES/patch-07-warnings
@@ -0,0 +1,25 @@
+ Avoid compiler warnings (gcc's -Wcast-qual).
+
+diff -ur t1utils-1.39.orig/t1asmhelp.h t1utils-1.39/t1asmhelp.h
+--- t1utils-1.39.orig/t1asmhelp.h 2015-02-26 21:31:27.000000000 +0100
++++ t1utils-1.39/t1asmhelp.h 2015-03-02 11:09:49.000000000 +0100
+@@ -18,8 +18,8 @@
+ }
+ }
+
+-
+-static const char* cs_start = "";
++static char cs_start_init[] = "";
++static char *cs_start = cs_start_init;
+
+ static void
+ set_cs_start(const char* line)
+@@ -36,7 +36,7 @@
+ for (r = q; r != p && !isspace((unsigned char) *r) && *r != '{'; ++r)
+ /* nada */;
+ if (cs_start_set)
+- free((char*) cs_start);
++ free(cs_start);
+ cs_start = p = malloc(r - q + 1);
+ memcpy(p, q, r - q);
+ p[r - q] = 0;