Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
formatting
  • Loading branch information
TheAssembler1 committed Sep 16, 2025
commit f406528b33f654c2ee8d46f91562a84cbcdf08aa
6 changes: 3 additions & 3 deletions src/tests/tags/kvtag_add_get_benchmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
uint64_t
atoui64(char *arg)
{
char * endptr;
char *endptr;
uint64_t num = strtoull(arg, &endptr, 10);

if (*endptr != '\0') {
Expand Down Expand Up @@ -326,7 +326,7 @@ int
main(int argc, char *argv[])
{
pdcid_t pdc, cont_prop, cont, obj_prop;
pdcid_t * obj_ids;
pdcid_t *obj_ids;
uint64_t n_obj, n_obj_incr, my_obj, my_obj_s;
uint64_t n_attr, n_attr_len, n_query, my_query, my_query_s;
uint64_t n_servers, n_clients;
Expand All @@ -335,7 +335,7 @@ main(int argc, char *argv[])
double stime = 0.0, step_elapse = 0.0;
double total_object_time = 0.0, total_tag_time = 0.0, total_query_time = 0.0;
uint64_t total_object_count = 0, total_tag_count = 0, total_query_count = 0;
void ** query_rst_cache;
void **query_rst_cache;
uint64_t *value_size;
int ret_value = SUCCEED;

Expand Down
Loading