aboutsummaryrefslogtreecommitdiff
path: root/release/picobsd
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2002-04-07 17:42:27 +0000
committerJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2002-04-07 17:42:27 +0000
commitb3d3fc366eabfd01bdcabacc73e0b6b39b8c2fb2 (patch)
tree4e05dbc5173f76d6a84e157adae502b178b1c742 /release/picobsd
parentebd3c05e64e8d69a5370f38f30da9f17c7dfabc5 (diff)
downloadsrc-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.c2
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;