Fix various compiler warnings.

fish.c: -Wincompatible-pointer-types
fkeys.c: -Wmisleading-indentation
proto-irc.c: -Wincompatible-pointer-types
util.c: -Wdeprecated-declarations
xtext.c: -Wmaybe-uninitialized
This commit is contained in:
Sadie Powell
2022-08-28 17:59:42 +01:00
committed by Patrick
parent 20c50fd7ef
commit 46c9df1863
5 changed files with 9 additions and 4 deletions

View File

@@ -461,7 +461,7 @@ channel_date (session *sess, char *chan, char *timestr,
}
static int
trailing_index(const char *word_eol[])
trailing_index(char *word_eol[])
{
int param_index;
for (param_index = 3; param_index < PDIWORDS; ++param_index)