summaryrefslogtreecommitdiffstats
path: root/mbbsd/stuff.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/stuff.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/stuff.c')
-rw-r--r--mbbsd/stuff.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mbbsd/stuff.c b/mbbsd/stuff.c
index 48c29c26..ecc85458 100644
--- a/mbbsd/stuff.c
+++ b/mbbsd/stuff.c
@@ -5,14 +5,14 @@
/* ----------------------------------------------------- */
/* set file path for boards/user home */
/* ----------------------------------------------------- */
-static const char *str_home_file = "home/%c/%s/%s";
-static const char *str_board_file = "boards/%c/%s/%s";
-static const char *str_board_n_file = "boards/%c/%s/%s.%d";
+static const char * const str_home_file = "home/%c/%s/%s";
+static const char * const str_board_file = "boards/%c/%s/%s";
+static const char * const str_board_n_file = "boards/%c/%s/%s.%d";
static char cdate_buffer[32];
#define STR_DOTDIR ".DIR"
-static const char *str_dotdir = STR_DOTDIR;
+static const char * const str_dotdir = STR_DOTDIR;
void
sethomepath(char *buf, const char *userid)