diff options
author | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-12-13 13:41:56 +0000 |
---|---|---|
committer | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-12-13 13:41:56 +0000 |
commit | f4e3345ee2be2dfa553d935f9cc1986b85e468ec (patch) | |
tree | af8219830b122a96dc87dcef91ab8c77210deb8e /src/regex/regex.c | |
parent | 3cecd9b1186bac4879b4f0678d9b333ba51f58d7 (diff) |
-use unsigned
git-svn-id: https://gnunet.org/svn/gnunet@25448 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/regex/regex.c')
-rw-r--r-- | src/regex/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex/regex.c b/src/regex/regex.c index 258795c838..6c8c812b0a 100644 --- a/src/regex/regex.c +++ b/src/regex/regex.c @@ -2571,7 +2571,7 @@ construct_dfa_states (struct GNUNET_REGEX_Context *ctx, */ struct GNUNET_REGEX_Automaton * GNUNET_REGEX_construct_dfa (const char *regex, const size_t len, - int max_path_len) + unsigned int max_path_len) { struct GNUNET_REGEX_Context ctx; struct GNUNET_REGEX_Automaton *dfa; |