Mark some more variables/parameters constant

Fixes a couple of warnings seen with GCC 4.7.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2012-04-05 21:52:22 +02:00
parent 80f7e8ead5
commit 50be1a1772
4 changed files with 7 additions and 7 deletions

View File

@@ -708,8 +708,8 @@ void io_export_data (enum export_type);
void io_export_bar (void);
void io_import_data (enum import_type, char *);
struct io_file *io_log_init (void);
void io_log_print (struct io_file *, int, char *);
void io_log_display (struct io_file *, char *, char *);
void io_log_print (struct io_file *, int, const char *);
void io_log_display (struct io_file *, const char *, char *);
void io_log_free (struct io_file *);
void io_start_psave_thread (void);
void io_stop_psave_thread (void);
@@ -894,7 +894,7 @@ void exit_calcurse (int) __attribute__((__noreturn__));
void free_user_data (void);
void fatalbox (const char *);
void warnbox (const char *);
void status_mesg (char *, char *);
void status_mesg (const char *, const char *);
void erase_window_part (WINDOW *, int, int, int, int);
WINDOW *popup (int, int, int, int, char *, char *, int);
void print_in_middle (WINDOW *, int, int, int, const char *);