mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
Added more const-ness to print_vfs_message.
This commit is contained in:
parent
a22afa7a72
commit
9d41314d09
@ -812,7 +812,7 @@ void set_hintbar(char *str)
|
||||
refresh();
|
||||
}
|
||||
|
||||
void print_vfs_message (char *msg, ...)
|
||||
void print_vfs_message (const char *msg, ...)
|
||||
{
|
||||
va_list ap;
|
||||
char str [128];
|
||||
|
@ -100,7 +100,7 @@ void touch_bar (void);
|
||||
void update_xterm_title_path (void);
|
||||
void load_hint (int force);
|
||||
|
||||
void print_vfs_message(char *msg, ...)
|
||||
void print_vfs_message(const char *msg, ...)
|
||||
__attribute__ ((format (printf, 1, 2)));
|
||||
|
||||
extern char *prompt;
|
||||
|
Loading…
Reference in New Issue
Block a user