From: Andy Spencer Date: Wed, 28 Dec 2011 05:41:52 +0000 (+0000) Subject: Fix 404 bug X-Git-Url: http://pileus.org/git/?p=~andy%2Faweather-web;a=commitdiff_plain;h=dd93f3cd564549ffd28f5647f443d5a4f7b8df20 Fix 404 bug --- diff --git a/index.c b/index.c index f078d0a..7877fb0 100644 --- a/index.c +++ b/index.c @@ -33,7 +33,7 @@ page_t special[] = { }; const page_t *everything[] = {header, other, footer, special, NULL}; const page_t *index = &special[0]; -const page_t *notfound = &special[1]; +const page_t *notfound = &special[2]; /* Main */ int main(int argc, char **argv)