Skip to content

Commit

Permalink
INTERNAL: Fixed a compile warning by "-Werror=maybe-uninitialized".
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpark816 committed Dec 24, 2024
1 parent b3bccb2 commit 930cccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/default/default_engine.c
Original file line number Diff line number Diff line change
Expand Up @@ -1259,7 +1259,7 @@ default_prefixscan(const char cursor[], const uint32_t count, const char *patter
int iter_total = 0;
int scan_total = 0;
int iter_count;
int scan_count;
int scan_count = 0;
int pattern_leng = (pattern ? strlen(pattern) : 0);
int max_elapsed = 5000; /* 5 msec */
struct timeval begin, end, diff;
Expand Down

0 comments on commit 930cccd

Please sign in to comment.