diff options
Diffstat (limited to 'protocols/Steam/src/protobuf-c')
-rw-r--r-- | protocols/Steam/src/protobuf-c/protobuf-c-text.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Steam/src/protobuf-c/protobuf-c-text.cpp b/protocols/Steam/src/protobuf-c/protobuf-c-text.cpp index 44fa0b7232..1a4a858218 100644 --- a/protocols/Steam/src/protobuf-c/protobuf-c-text.cpp +++ b/protocols/Steam/src/protobuf-c/protobuf-c-text.cpp @@ -202,14 +202,14 @@ static void protobuf_c_text_to_string_internal( if (f[i].label == PROTOBUF_C_LABEL_REPEATED) { for (j = 0; j < quantifier_offset; j++) { str.AppendFormat( - "%*s%s: %lu\n", + "%*s%s: %lld\n", level, "", f[i].name, STRUCT_MEMBER(uint64_t *, m, f[i].offset)[j]); } } else { str.AppendFormat( - "%*s%s: %lu\n", + "%*s%s: %lld\n", level, "", f[i].name, STRUCT_MEMBER(uint64_t, m, f[i].offset)); } @@ -219,14 +219,14 @@ static void protobuf_c_text_to_string_internal( if (f[i].label == PROTOBUF_C_LABEL_REPEATED) { for (j = 0; j < quantifier_offset; j++) { str.AppendFormat( - "%*s%s: %ld\n", + "%*s%s: %lld\n", level, "", f[i].name, STRUCT_MEMBER(int64_t *, m, f[i].offset)[j]); } } else { str.AppendFormat( - "%*s%s: %ld\n", + "%*s%s: %lld\n", level, "", f[i].name, STRUCT_MEMBER(int64_t, m, f[i].offset)); } |