From 162c6aebddbe2d79d4b435b959d2285c1543de42 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Wed, 5 Oct 2011 09:11:14 +0200 Subject: src/utils.c: Mark input string of parse_date() const We don't mess about with the date string here, so it should be declared const. Signed-off-by: Lukas Fleischer --- src/calcurse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/calcurse.h') diff --git a/src/calcurse.h b/src/calcurse.h index 8e06cda..4418510 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -894,7 +894,7 @@ long mystrtol (const char *); void print_bool_option_incolor (WINDOW *, unsigned, int, int); const char *get_tempdir (void); char *new_tempfile (const char *, int); -int parse_date (char *, enum datefmt, int *, int *, int *, +int parse_date (const char *, enum datefmt, int *, int *, int *, struct date *); void str_toupper (char *); void file_close (FILE *, const char *); -- cgit v1.2.3-54-g00ecf