From fed9ffc150a0ecb0cff00f8032e3e3e7c741bfd9 Mon Sep 17 00:00:00 2001 From: valenok Date: Tue, 31 Aug 2010 07:49:55 +0100 Subject: [PATCH] struct mg_request_info * -> const struct mg_request_info * --- test/embed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/embed.c b/test/embed.c index 2d268cab..e4372980 100644 --- a/test/embed.c +++ b/test/embed.c @@ -148,7 +148,7 @@ static const struct test_config { static void *callback(enum mg_event event, struct mg_connection *conn, - struct mg_request_info *request_info) { + const struct mg_request_info *request_info) { int i; for (i = 0; test_config[i].uri != NULL; i++) {