diff options
author | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2002-04-07 17:42:27 +0000 |
---|---|---|
committer | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2002-04-07 17:42:27 +0000 |
commit | b3d3fc366eabfd01bdcabacc73e0b6b39b8c2fb2 (patch) | |
tree | 4e05dbc5173f76d6a84e157adae502b178b1c742 /release/picobsd | |
parent | ebd3c05e64e8d69a5370f38f30da9f17c7dfabc5 (diff) | |
download | src-b3d3fc366eabfd01bdcabacc73e0b6b39b8c2fb2.tar.gz src-b3d3fc366eabfd01bdcabacc73e0b6b39b8c2fb2.zip |
Add a missing void in the parameter list of http_request().
Notes
Notes:
svn path=/head/; revision=94135
Diffstat (limited to 'release/picobsd')
-rw-r--r-- | release/picobsd/tinyware/simple_httpd/simple_httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/picobsd/tinyware/simple_httpd/simple_httpd.c b/release/picobsd/tinyware/simple_httpd/simple_httpd.c index f497c0bd96a5..dce226294c74 100644 --- a/release/picobsd/tinyware/simple_httpd/simple_httpd.c +++ b/release/picobsd/tinyware/simple_httpd/simple_httpd.c @@ -194,7 +194,7 @@ log_line(char *req) * and do what needs to be done */ void -http_request() +http_request(void) { int fd, lg, i; int cmd = 0; |