diff options
author | Bryce McKinlay <bryce@albatross.co.nz> | 2000-04-27 11:47:13 +0000 |
---|---|---|
committer | Bryce McKinlay <bryce@gcc.gnu.org> | 2000-04-27 12:47:13 +0100 |
commit | af4464eb46fd1fcec3a8f69b320fa069f3d179a0 (patch) | |
tree | b6245b895c1706035de27efbbc9a917dbce01128 /libjava/prims.cc | |
parent | 9785c68dd55d366c6837b8e647039e8bfcad5fc9 (diff) | |
download | gcc-af4464eb46fd1fcec3a8f69b320fa069f3d179a0.zip gcc-af4464eb46fd1fcec3a8f69b320fa069f3d179a0.tar.gz gcc-af4464eb46fd1fcec3a8f69b320fa069f3d179a0.tar.bz2 |
prims.cc (_Jv_NewObjectArray): Fix typo.
2000-04-27 Bryce McKinlay <bryce@albatross.co.nz>
* prims.cc (_Jv_NewObjectArray): Fix typo.
From-SVN: r33479
Diffstat (limited to 'libjava/prims.cc')
-rw-r--r-- | libjava/prims.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/prims.cc b/libjava/prims.cc index 32e079b..c632c63 100644 --- a/libjava/prims.cc +++ b/libjava/prims.cc @@ -377,7 +377,7 @@ _Jv_NewObjectArray (jsize count, jclass elementClass, jobject init) // Check for overflow. if (__builtin_expect ((size_t) count > - (SIZE_T_MAX - size) / sizeof (jobject), 0)); + (SIZE_T_MAX - size) / sizeof (jobject), 0)) JvThrow (no_memory); size += count * sizeof (jobject); |