Commit d7f25da2 authored by Dag Haavi Finstad's avatar Dag Haavi Finstad

Constify

parent 89432039
...@@ -405,7 +405,7 @@ static const struct h2_setting_s * const h2_setting_tbl[] = { ...@@ -405,7 +405,7 @@ static const struct h2_setting_s * const h2_setting_tbl[] = {
#define H2_SETTING_TBL_LEN (sizeof(h2_setting_tbl)/sizeof(h2_setting_tbl[0])) #define H2_SETTING_TBL_LEN (sizeof(h2_setting_tbl)/sizeof(h2_setting_tbl[0]))
static void static void
h2_win_adjust(struct h2_sess *h2, uint32_t oldval, uint32_t newval) h2_win_adjust(const struct h2_sess *h2, uint32_t oldval, uint32_t newval)
{ {
struct h2_req *r2; struct h2_req *r2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment