aboutsummaryrefslogtreecommitdiffstats
path: root/community/nx-libs/fix-const-char.patch
blob: 404612cd637d5853c2bcfcf7afa3b1fad452a42d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--- a/nx-X11/lib/font/fontfile/encparse.c
+++ b/nx-X11/lib/font/fontfile/encparse.c
@@ -785,13 +785,13 @@
     return 0;
 }
 
-char*
+const char*
 FontEncDirectory()
 {
-    static char* dir = NULL;
+    static const char* dir = NULL;
 
     if(dir == NULL) {
-        char *c = getenv("FONT_ENCODINGS_DIRECTORY");
+        const char *c = getenv("FONT_ENCODINGS_DIRECTORY");
         if(c) {
             dir = malloc(strlen(c) + 1);
             if(!dir)
@@ -899,7 +899,7 @@
 {
     FontEncPtr encoding;
     char dir[MAXFONTFILENAMELEN], dirname[MAXFONTFILENAMELEN];
-    char *d;
+    const char *d;
 
     if(fontFileName) {
         parseFontFileName(fontFileName, dirname, dir);