david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Added missing "static" declarations

This commit is contained in:
Michael Brown 2007-07-17 01:42:10 +01:00
parent 19904804da
commit 94415b7669
1 changed files with 2 additions and 2 deletions

View File

@ -216,7 +216,7 @@ struct http_header_handler {
}; };
/** List of HTTP header handlers */ /** List of HTTP header handlers */
struct http_header_handler http_header_handlers[] = { static struct http_header_handler http_header_handlers[] = {
{ {
.header = "Content-Length", .header = "Content-Length",
.rx = http_rx_content_length, .rx = http_rx_content_length,
@ -279,7 +279,7 @@ struct http_line_handler {
}; };
/** List of HTTP line-based data handlers */ /** List of HTTP line-based data handlers */
struct http_line_handler http_line_handlers[] = { static struct http_line_handler http_line_handlers[] = {
[HTTP_RX_RESPONSE] = { .rx = http_rx_response }, [HTTP_RX_RESPONSE] = { .rx = http_rx_response },
[HTTP_RX_HEADER] = { .rx = http_rx_header }, [HTTP_RX_HEADER] = { .rx = http_rx_header },
}; };