summaryrefslogtreecommitdiffstats
path: root/mbbsd/vote.c
diff options
context:
space:
mode:
authorkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-03-12 16:32:14 +0800
committerkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-03-12 16:32:14 +0800
commit4e6fa990c8f579d92b1cac47ee5ab4905832bde2 (patch)
tree73480e4d942a1c65e282a0b5e1d5c7d69eb3f1be /mbbsd/vote.c
parent1465912d8d554cc8b81241b9163be6f72176ffb2 (diff)
downloadpttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar
pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar.gz
pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar.bz2
pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar.lz
pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar.xz
pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar.zst
pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.zip
move 232 bytes from data section to rodata section
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2600 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/vote.c')
-rw-r--r--mbbsd/vote.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/mbbsd/vote.c b/mbbsd/vote.c
index 8906b4e8..191acf88 100644
--- a/mbbsd/vote.c
+++ b/mbbsd/vote.c
@@ -4,15 +4,15 @@
#define MAX_VOTE_NR 20
#define MAX_VOTE_PAGE 5
-const char *STR_bv_control = "control"; /* щ布ら戳 匡兜 */
-const char *STR_bv_desc = "desc"; /* щ布ヘ */
-const char *STR_bv_ballots = "ballots"; /* щ布 (per byte) */
-const char *STR_bv_flags = "flags";
-const char *STR_bv_comments = "comments"; /* щ布某 */
-const char *STR_bv_limited = "limited"; /* ╬щ布 */
-const char *STR_bv_title = "vtitle";
-
-const char STR_bv_results[] = "results";
+const char * const STR_bv_control = "control"; /* щ布ら戳 匡兜 */
+const char * const STR_bv_desc = "desc"; /* щ布ヘ */
+const char * const STR_bv_ballots = "ballots"; /* щ布 (per byte) */
+const char * const STR_bv_flags = "flags";
+const char * const STR_bv_comments = "comments"; /* щ布某 */
+const char * const STR_bv_limited = "limited"; /* ╬щ布 */
+const char * const STR_bv_title = "vtitle";
+
+const char * const STR_bv_results = "results";
typedef struct {
char control[sizeof("controlXX\0")];