Skip to content

Commit

Permalink
Merge pull request #1320 from garlick/use_size_t
Browse files Browse the repository at this point in the history
qmanager: track API changes in core
  • Loading branch information
mergify[bot] authored Dec 11, 2024
2 parents 6a7ecc0 + 139d021 commit 3fb0b4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qmanager/modules/qmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ static int handshake_jobmanager (std::shared_ptr<qmanager_ctx_t> &ctx)

static void status_request_cb (flux_t *h, flux_msg_handler_t *w, const flux_msg_t *msg, void *arg)
{
int len = 0;
size_t len = 0;
const char *payload;
flux_future_t *f = NULL;

Expand Down Expand Up @@ -310,7 +310,7 @@ static void feasibility_request_cb (flux_t *h,
const flux_msg_t *msg,
void *arg)
{
int size = 0;
size_t size = 0;
flux_future_t *f = nullptr;
const char *data = nullptr;

Expand Down

0 comments on commit 3fb0b4e

Please sign in to comment.