Skip to content

Commit

Permalink
chore: clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Jan 18, 2024
1 parent 88c33e9 commit 62ed855
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/api/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -648,8 +648,8 @@ int8_t z_delete(z_session_t zs, z_keyexpr_t keyexpr, const z_delete_options_t *o
opt.congestion_control = options->congestion_control;
opt.priority = options->priority;
}
ret = _z_write(&zs._val.in->val, keyexpr, NULL, 0, z_encoding_default(), Z_SAMPLE_KIND_DELETE, opt.congestion_control,
opt.priority);
ret = _z_write(&zs._val.in->val, keyexpr, NULL, 0, z_encoding_default(), Z_SAMPLE_KIND_DELETE,
opt.congestion_control, opt.priority);

return ret;
}
Expand Down Expand Up @@ -784,8 +784,8 @@ int8_t z_get(z_session_t zs, z_keyexpr_t keyexpr, const char *parameters, z_owne
wrapped_ctx->ctx = ctx;
}

ret = _z_query(&zs._val.in->val, keyexpr, parameters, opt.target, opt.consolidation.mode, opt.value, __z_reply_handler,
wrapped_ctx, callback->drop, ctx);
ret = _z_query(&zs._val.in->val, keyexpr, parameters, opt.target, opt.consolidation.mode, opt.value,
__z_reply_handler, wrapped_ctx, callback->drop, ctx);
return ret;
}

Expand Down

0 comments on commit 62ed855

Please sign in to comment.