Skip to content

Commit

Permalink
kyua: use unsigned for a length constant
Browse files Browse the repository at this point in the history
  • Loading branch information
ihoro committed May 7, 2024
1 parent 4b3ba28 commit 6185b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/kyua/freebsd/utils/jail.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ using utils::process::args_vector;
using utils::process::child;


static const int jail_name_max_len = MAXHOSTNAMELEN - 1;
static const size_t jail_name_max_len = MAXHOSTNAMELEN - 1;
static const char* jail_name_prefix = "kyua";


Expand Down

0 comments on commit 6185b51

Please sign in to comment.