diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-25 19:05:51 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-25 19:05:51 +0100 |
commit | 901b7d5d91b3eacda12dad01211b84a28e1a39a6 (patch) | |
tree | 903ad96735d1e3c06406f363969d43b7cbb17f93 /LibC/termcap.h | |
parent | 15fb917f28505539b05b9b21de0aae7055a5ab2e (diff) | |
download | serenity-901b7d5d91b3eacda12dad01211b84a28e1a39a6.zip |
Fix a bunch of compiler warnings. Not all, but a lot.
Diffstat (limited to 'LibC/termcap.h')
-rw-r--r-- | LibC/termcap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/LibC/termcap.h b/LibC/termcap.h index f2f40ebf83..e9136d9c2b 100644 --- a/LibC/termcap.h +++ b/LibC/termcap.h @@ -9,9 +9,9 @@ extern char* UP; extern char* BC; int tgetent(char* bp, const char* name); -int tgetflag(char* id); -int tgetnum(char* id); -char* tgetstr(char* id, char** area); +int tgetflag(const char* id); +int tgetnum(const char* id); +char* tgetstr(const char* id, char** area); char* tgoto(const char* cap, int col, int row); int tputs(const char* str, int affcnt, int (*putc)(int)); |