Skip to content

Commit

Permalink
Merge pull request dlundquist#349 from nemunaire/fix-gcc10
Browse files Browse the repository at this point in the history
Fix compilation issue with gcc >= 10
  • Loading branch information
dlundquist authored Mar 3, 2020
2 parents 3fa47ea + 711dd14 commit 822bb80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/http.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
#include <stdio.h>
#include "protocol.h"

const struct Protocol *const http_protocol;
extern const struct Protocol *const http_protocol;

#endif
2 changes: 1 addition & 1 deletion src/tls.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@

#include "protocol.h"

const struct Protocol *const tls_protocol;
extern const struct Protocol *const tls_protocol;

#endif

0 comments on commit 822bb80

Please sign in to comment.