Navigation Menu

Skip to content

Commit

Permalink
clang: suppress a warning
Browse files Browse the repository at this point in the history
Use "unsigned int" for length.
  • Loading branch information
kou committed Jun 11, 2013
1 parent 9653a40 commit b67901b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/groonga_benchmark.c
Expand Up @@ -845,7 +845,8 @@ static int
do_command(grn_ctx *ctx, char *command, int type, int task_id)
{
char *res;
int res_len, flags;
unsigned int res_len;
int flags;
grn_obj start_time, end_time;

GRN_TIME_INIT(&start_time, 0);
Expand Down

0 comments on commit b67901b

Please sign in to comment.