Added more const-ness to print_vfs_message.

This commit is contained in:
Roland Illig 2004-08-16 18:31:30 +00:00
parent a22afa7a72
commit 9d41314d09
2 changed files with 2 additions and 2 deletions

View File

@ -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];

View File

@ -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;