summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui/cli/tap-follow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/cli/tap-follow.c b/ui/cli/tap-follow.c
index 3d69a19f8d..c6a4ed0014 100644
--- a/ui/cli/tap-follow.c
+++ b/ui/cli/tap-follow.c
@@ -291,7 +291,7 @@ static void follow_draw(void *contextp)
static gboolean follow_arg_strncmp(const char **opt_argp, const char *strp)
{
- int len = strlen(strp);
+ size_t len = strlen(strp);
if (strncmp(*opt_argp, strp, len) == 0)
{