1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

r5861: Apply some const

This commit is contained in:
Volker Lendecke
2005-03-17 18:25:15 +00:00
committed by Gerald (Jerry) Carter
parent c137362871
commit d89b40e9b1

View File

@ -131,7 +131,7 @@ static void help(void)
"\n");
}
static void terror(char *why)
static void terror(const char *why)
{
printf("%s\n", why);
}
@ -407,7 +407,7 @@ static void info_tdb(void)
printf("%d records totalling %d bytes\n", count, total_bytes);
}
static char *tdb_getline(char *prompt)
static char *tdb_getline(const char *prompt)
{
static char line[1024];
char *p;