diff options
author | Chris Lattner <sabre@nondot.org> | 2004-04-13 18:34:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-04-13 18:34:16 +0000 |
commit | 422acf2674978b5b70de2ae176004cbcc38fa7d7 (patch) | |
tree | 5e8a638e320ccbf421b63239636dd180423d9815 | |
parent | f7dd526fa66d28b0c36b9766eafd46976d1f2808 (diff) |
Fixed sized limits are bad... duh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12908 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/Spiff/line.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/Spiff/line.h b/utils/Spiff/line.h index fdc05fe622..930cbe2e20 100644 --- a/utils/Spiff/line.h +++ b/utils/Spiff/line.h @@ -9,7 +9,7 @@ #ifndef L_INCLUDED -#define _L_MAXLINES 10000 +#define _L_MAXLINES 100000 /* ** oh god, is this an ugly implementation. |