diff options
Diffstat (limited to 'mbbsd/stuff.c')
-rw-r--r-- | mbbsd/stuff.c | 8 |
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) |