From dd93f3cd564549ffd28f5647f443d5a4f7b8df20 Mon Sep 17 00:00:00 2001 From: Andy Spencer Date: Wed, 28 Dec 2011 05:41:52 +0000 Subject: [PATCH] Fix 404 bug --- index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.43.2