Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
ac354d3b
Commit
ac354d3b
authored
Nov 08, 2013
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compile error with --enable-maintainer-mode
parent
873477d9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
hdtest/comp_helper.c
hdtest/comp_helper.c
+1
-1
hdtest/inflatehd.c
hdtest/inflatehd.c
+1
-1
lib/nghttp2_hd.c
lib/nghttp2_hd.c
+1
-1
No files found.
hdtest/comp_helper.c
View file @
ac354d3b
...
...
@@ -24,7 +24,7 @@
*/
#include "comp_helper.h"
void
dump_val
(
json_t
*
jent
,
const
char
*
key
,
uint8_t
*
val
,
size_t
len
)
static
void
dump_val
(
json_t
*
jent
,
const
char
*
key
,
uint8_t
*
val
,
size_t
len
)
{
if
(
val
==
NULL
)
{
json_object_set_new
(
jent
,
key
,
json_string
(
"**DEALLOCATED**"
));
...
...
hdtest/inflatehd.c
View file @
ac354d3b
...
...
@@ -101,7 +101,7 @@ static int inflate_hd(json_t *obj, nghttp2_hd_context *inflater, int seq)
return
0
;
}
static
int
perform
()
static
int
perform
(
void
)
{
nghttp2_hd_context
inflater
;
size_t
i
;
...
...
lib/nghttp2_hd.c
View file @
ac354d3b
...
...
@@ -97,7 +97,7 @@ static nghttp2_hd_entry static_table[] = {
/* 58 */
MAKE_NV
(
"www-authenticate"
,
""
)
};
const
static
size_t
STATIC_TABLE_LENGTH
=
static
const
size_t
STATIC_TABLE_LENGTH
=
sizeof
(
static_table
)
/
sizeof
(
static_table
[
0
]);
typedef
struct
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment