mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
fe-common-core: fix redeclaration of server_tag_len
This commit is contained in:
parent
121a4971e6
commit
f9c8365999
1 changed files with 1 additions and 1 deletions
|
|
@ -478,7 +478,7 @@ gboolean strarray_find_dest(char **array, const TEXT_DEST_REC *dest)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
int server_tag_len = dest->server_tag != NULL ? strlen(dest->server_tag) : 0;
|
||||
server_tag_len = dest->server_tag != NULL ? strlen(dest->server_tag) : 0;
|
||||
for (tmp = array; *tmp != NULL; tmp++) {
|
||||
char *str = *tmp;
|
||||
if (*str == '\0') {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue