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

@@ -1230,14 +1230,14 @@ io_log_init (void)
}
void
io_log_print (struct io_file *log, int line, char *msg)
io_log_print (struct io_file *log, int line, const char *msg)
{
if (log && log->fd)
fprintf (log->fd, "line %d: %s\n", line, msg);
}
void
io_log_display (struct io_file *log, char *msg, char *pager)
io_log_display (struct io_file *log, const char *msg, char *pager)
{
char *choices = "[y/n] ";
int ans;