diff options
author | jmz <jmz@FreeBSD.org> | 2000-02-18 04:17:13 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2000-02-18 04:17:13 +0800 |
commit | 604c37006d1914b55e895e522a66b9b12d5a0714 (patch) | |
tree | 5d1aacda22f9b3bdd061f2781b4bd057a7d653fe /x11-toolkits/tix | |
parent | 53fadabca2bedd92fe926282f45addae45789135 (diff) | |
download | freebsd-ports-gnome-604c37006d1914b55e895e522a66b9b12d5a0714.tar.gz freebsd-ports-gnome-604c37006d1914b55e895e522a66b9b12d5a0714.tar.zst freebsd-ports-gnome-604c37006d1914b55e895e522a66b9b12d5a0714.zip |
Writable strings must be declared 'char foo[]=...', not 'char *foo=...'
Diffstat (limited to 'x11-toolkits/tix')
-rw-r--r-- | x11-toolkits/tix/files/patch-ad | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/x11-toolkits/tix/files/patch-ad b/x11-toolkits/tix/files/patch-ad index b4f9c5083dba..92867bf7e7d1 100644 --- a/x11-toolkits/tix/files/patch-ad +++ b/x11-toolkits/tix/files/patch-ad @@ -1,5 +1,14 @@ ---- ../../generic/tixInit.c~ Thu Feb 11 18:11:44 1999 -+++ ../../generic/tixInit.c Sun Dec 5 06:46:59 1999 +--- ../../generic/tixInit.c.orig Thu Feb 11 18:11:44 1999 ++++ ../../generic/tixInit.c Thu Feb 17 19:46:36 2000 +@@ -499,7 +499,7 @@ + *---------------------------------------------------------------------- + */ + +-static char *initScript = ++static char initScript[] = + "if [catch {file join a a}] {\n\ + proc tixFileJoin {args} {\n\ + set p [join $args /]\n\ @@ -537,6 +537,7 @@ }\n\ set instDir [file dirname [info library]]\n\ |