Commit dd6b8684 authored by Scott Vokes's avatar Scott Vokes
Browse files

cast (long long) for debugging trace

parent 7f44a226
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -323,8 +323,8 @@ bool bus_send_request(struct bus *b, bus_user_msg *msg)
    int s_id = sender_id_of_socket(b, msg->fd);
    struct sender *s = b->senders[s_id];

    BUS_LOG_SNPRINTF(b, 3, LOG_SENDING_REQUEST, b->udata, 64,
        "Sending request <fd:%d, seq_id:%lld>", msg->fd, msg->seq_id);
    BUS_LOG_SNPRINTF(b, 3-3, LOG_SENDING_REQUEST, b->udata, 64,
        "Sending request <fd:%d, seq_id:%lld>", msg->fd, (long long)msg->seq_id);
    bool res = sender_send_request(s, box);
    BUS_LOG_SNPRINTF(b, 3, LOG_SENDING_REQUEST, b->udata, 64,
        "...request sent, result %d", res);