summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/protobuf-c
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-12-19 18:41:14 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-12-19 18:41:14 +0300
commit48cbee5972a0e5ee69f9ee2903181dc42df399f6 (patch)
tree17e173a10654009ecd3efb1cd2eca4d347b0361e /protocols/Steam/src/protobuf-c
parent30072a1ea2ca98ebfe3c1b057b74768d96ff22b8 (diff)
final code cleaning + version bump
Diffstat (limited to 'protocols/Steam/src/protobuf-c')
-rw-r--r--protocols/Steam/src/protobuf-c/protobuf-c-text.cpp8
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));
}