urlmatch.c:494:1: warning: ‘static’ is not at beginning of declaration [-Wold-style-declaration]
jb_err static normalize_http_version(char *http_version)
^~~~~~
swap 'jb_err' and 'static' so that ‘static’ is at beginning of declaration
* JB_ERR_PARSE if the HTTP version is unsupported
*
*********************************************************************/
-jb_err static normalize_http_version(char *http_version)
+static jb_err normalize_http_version(char *http_version)
{
unsigned int major_version;
unsigned int minor_version;