Skip to content

Commit d9c8c82

Browse files
author
grothoff
committed
more consts
git-svn-id: https://gnunet.org/svn/libmicrohttpd@25942 140774ce-b5e7-0310-ab8b-a85725594a96
1 parent 0c4b0f0 commit d9c8c82

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/daemon/connection.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -615,9 +615,9 @@ add_extra_headers (struct MHD_Connection *connection)
615615
static void
616616
get_date_string (char *date)
617617
{
618-
static const char *days[] =
618+
static const char *const days[] =
619619
{ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
620-
static const char *mons[] =
620+
static const char *const mons[] =
621621
{ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct",
622622
"Nov", "Dec"
623623
};

src/include/microhttpd.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ extern "C"
106106
/**
107107
* Current version of the library.
108108
*/
109-
#define MHD_VERSION 0x00091802
109+
#define MHD_VERSION 0x00091803
110110

111111
/**
112112
* MHD-internal return code for "YES".

0 commit comments

Comments
 (0)