mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-12-26 10:24:14 +08:00
fixed warning in auth when building with clang (dammit!)
This commit is contained in:
parent
351c301f17
commit
ce9b957c3d
@ -310,7 +310,7 @@ void Auth_Manager::Callback(Common_Message *msg)
|
||||
|
||||
if (msg->has_auth_ticket()) {
|
||||
if (msg->auth_ticket().type() == Auth_Ticket::CANCEL) {
|
||||
PRINT_DEBUG("TICKET CANCEL %llu\n", msg->source_id());
|
||||
PRINT_DEBUG("TICKET CANCEL " "%" PRIu64 "\n", msg->source_id());
|
||||
uint32 number = msg->auth_ticket().number();
|
||||
auto t = std::begin(inbound);
|
||||
while (t != std::end(inbound)) {
|
||||
|
@ -515,7 +515,7 @@ struct Auth_Data {
|
||||
"AUTH::Auth_Data::SER:\n"
|
||||
" HasGC: %u\n"
|
||||
" user steam_id: " "%" PRIu64 "\n"
|
||||
" number: %llu\n",
|
||||
" number: " "%" PRIu64 "\n",
|
||||
|
||||
(int)HasGC,
|
||||
steam_id,
|
||||
|
Loading…
x
Reference in New Issue
Block a user