diff options
author | Tobias Brunner <tobias@strongswan.org> | 2017-09-18 17:57:05 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2017-09-19 13:24:43 +0200 |
commit | e0e43229736a84db5af6cb7af9cc2ae03da4c906 (patch) | |
tree | f496c2132e700b761b49571254292622a80254bd /src/stroke | |
parent | d4593353c97347fc9505a5a4fe3cfb66b246874f (diff) | |
download | strongswan-e0e43229736a.tar.bz2 strongswan-e0e43229736a.tar.xz |
configure: Detect type of length parameter for gperf generated function
Since 3.1 gperf uses size_t for the length parameter instead of an
unsigned int.
Diffstat (limited to 'src/stroke')
-rw-r--r-- | src/stroke/stroke_keywords.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stroke/stroke_keywords.h b/src/stroke/stroke_keywords.h index 4a1016277..51caba68b 100644 --- a/src/stroke/stroke_keywords.h +++ b/src/stroke/stroke_keywords.h @@ -73,6 +73,6 @@ typedef enum { typedef struct stroke_token stroke_token_t; -extern const stroke_token_t* in_word_set(register const char *str, register unsigned int len); +extern const stroke_token_t* in_word_set(register const char *str, register GPERF_LEN_TYPE len); #endif /* _STROKE_KEYWORDS_H_ */ |