Przeglądaj źródła

Increased buffer size in order to prevent truncated error messages

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@7670 8c9fc860-2736-0410-a75d-ab315db34111
eth.negelef 7 lat temu
rodzic
commit
75a67acc8c
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      source/Diagnostics.Mod

+ 1 - 1
source/Diagnostics.Mod

@@ -37,7 +37,7 @@ TYPE
 		type*: LONGINT;
 		source*: ARRAY 128 OF CHAR;
 		position*, errorCode*: LONGINT;
-		message*: ARRAY 128 OF CHAR;
+		message*: ARRAY 256 OF CHAR;
 		next*: Entry;
 	END;