mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-27 11:52:03 +00:00
no [] initializers
This commit is contained in:
parent
d7d96fb3e2
commit
d82651b8fd
1 changed files with 4 additions and 4 deletions
|
@ -84,10 +84,10 @@ struct {
|
|||
char *name;
|
||||
int (*f)(URL*, URL*, Range*, Out*, long);
|
||||
} method[] = {
|
||||
[Http] { "http", dohttp },
|
||||
[Https] { "https", dohttp },
|
||||
[Ftp] { "ftp", doftp },
|
||||
[Other] { "_______", nil },
|
||||
{ "http", dohttp },
|
||||
{ "https", dohttp },
|
||||
{ "ftp", doftp },
|
||||
{ "_______", nil },
|
||||
};
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue