1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-26 02:46:13 -04:00

[bittorrent] const in bencoding_dictionary_info

This commit is contained in:
Witold Filipczyk 2022-02-17 19:33:01 +01:00
parent 07fb70a4a3
commit 0f758ec5a4

View File

@ -241,7 +241,7 @@ struct scanner_info bencoding_scanner_info = {
/* ************************************************************************** */ /* ************************************************************************** */
struct bencoding_dictionary_info { struct bencoding_dictionary_info {
char *key; const char *key;
enum bencoding_token key_type; enum bencoding_token key_type;
enum bencoding_token value_type; enum bencoding_token value_type;
}; };