diff options
| author | Derek Pryor | 2006-08-12 21:05:08 +0200 |
|---|---|---|
| committer | Derek Pryor | 2006-08-12 21:05:08 +0200 |
| commit | 562ab6d65ced8441a24616170426288f76b0fea6 (patch) | |
| tree | 7c77be3b43c0da492a1813f02ef3f65644c0d543 | |
| parent | Bug fixes to the HTTP protocol code (diff) | |
| download | ipxe-562ab6d65ced8441a24616170426288f76b0fea6.tar.gz ipxe-562ab6d65ced8441a24616170426288f76b0fea6.tar.xz ipxe-562ab6d65ced8441a24616170426288f76b0fea6.zip | |
Bug fixes to the HTTP protocol code
| -rw-r--r-- | src/net/tcp/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tcp/http.c b/src/net/tcp/http.c index 90c117d53..01f0aeacb 100644 --- a/src/net/tcp/http.c +++ b/src/net/tcp/http.c @@ -71,7 +71,7 @@ static void http_connected ( struct tcp_connection *conn ) { * @v conn a TCP Connection * @v len the length of data acked */ -static void http_acked ( struct tcp_connection *conn, size_t len ) { +static void http_acked ( struct tcp_connection *conn, size_t len __attribute__ ((unused)) ) { struct http_request *http = tcp_to_http ( conn ); // assume that the whole GET request was sent in on epacket |
