aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/vmsfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vmsfns.c b/src/vmsfns.c
index 68b941abe2f..512ab21679a 100644
--- a/src/vmsfns.c
+++ b/src/vmsfns.c
@@ -850,7 +850,7 @@ static Lisp_Object
850vms_trnlog (arg1, arg2) 850vms_trnlog (arg1, arg2)
851 Lisp_Object arg1, arg2; 851 Lisp_Object arg1, arg2;
852{ 852{
853 char str[100]; 853 char str[256]; /* Max logical translation is 255 bytes. */
854 int status, symdsc[2]; 854 int status, symdsc[2];
855 int strdsc[2] = { sizeof (str), str }; 855 int strdsc[2] = { sizeof (str), str };
856 short length, level; 856 short length, level;
@@ -870,7 +870,7 @@ static Lisp_Object
870vms_symbol (arg1, arg2) 870vms_symbol (arg1, arg2)
871 Lisp_Object arg1, arg2; 871 Lisp_Object arg1, arg2;
872{ 872{
873 char str[100]; 873 char str[1025]; /* Max symbol translation is 1024 bytes. */
874 int status, symdsc[2]; 874 int status, symdsc[2];
875 int strdsc[2] = { sizeof (str), str }; 875 int strdsc[2] = { sizeof (str), str };
876 short length, level; 876 short length, level;