diff options
author | jack <jack@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-09 00:49:45 +0800 |
---|---|---|
committer | jack <jack@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-09 00:49:45 +0800 |
commit | 17d465e3a6fd430a9318604641453e6c8ee63db3 (patch) | |
tree | 6cee5eed52e7f0be82538b0b5036b27da0955fcf | |
parent | 568f85f62408671db2d16a0e33e0d206effe99c4 (diff) | |
download | pttbbs-17d465e3a6fd430a9318604641453e6c8ee63db3.tar pttbbs-17d465e3a6fd430a9318604641453e6c8ee63db3.tar.gz pttbbs-17d465e3a6fd430a9318604641453e6c8ee63db3.tar.bz2 pttbbs-17d465e3a6fd430a9318604641453e6c8ee63db3.tar.lz pttbbs-17d465e3a6fd430a9318604641453e6c8ee63db3.tar.xz pttbbs-17d465e3a6fd430a9318604641453e6c8ee63db3.tar.zst pttbbs-17d465e3a6fd430a9318604641453e6c8ee63db3.zip |
increase the size of i18nstring in SHM
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1931 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | include/pttstruct.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/pttstruct.h b/include/pttstruct.h index eafc8636..f3f98de9 100644 --- a/include/pttstruct.h +++ b/include/pttstruct.h @@ -428,9 +428,9 @@ typedef struct { #ifdef I18N /* i18n(internationlization) */ char *i18nstrptr[MAX_LANG][MAX_STRING]; - char i18nstrbody[16 * MAX_LANG * MAX_STRING]; + char i18nstrbody[22 * MAX_LANG * MAX_STRING]; /* Based on the statistis, we found the lengh of one string - is 16 bytes approximately. + is 22 bytes approximately. */ #endif } SHM_t; |