mirror of https://github.com/MidnightCommander/mc
util.[ch] (app_text): Make const and adjust declaration.
This commit is contained in:
parent
eb7d542f24
commit
8c9c34918b
|
@ -55,7 +55,7 @@
|
||||||
|
|
||||||
/* "$Id$" */
|
/* "$Id$" */
|
||||||
|
|
||||||
char app_text [] = "Midnight-Commander";
|
const char app_text [] = "Midnight-Commander";
|
||||||
|
|
||||||
int easy_patterns = 1;
|
int easy_patterns = 1;
|
||||||
int tilde_trunc = 1;
|
int tilde_trunc = 1;
|
||||||
|
|
|
@ -110,7 +110,7 @@ void use_dash (int flag); /* Disable/Enable rotate_dash routines */
|
||||||
void rotate_dash (void);
|
void rotate_dash (void);
|
||||||
void remove_dash (void);
|
void remove_dash (void);
|
||||||
|
|
||||||
extern char app_text [];
|
extern const char app_text [];
|
||||||
|
|
||||||
/* Creating temporary files safely */
|
/* Creating temporary files safely */
|
||||||
void init_tmpdir(void);
|
void init_tmpdir(void);
|
||||||
|
|
Loading…
Reference in New Issue