We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6b7c72f + 0b0efdb commit 0b9433aCopy full SHA for 0b9433a
1 file changed
cmp.c
@@ -1113,7 +1113,7 @@ bool cmp_read_s16(cmp_ctx_t *ctx, int16_t *s) {
1113
return false;
1114
}
1115
1116
- *s = be16(obj.as.s16);
+ *s = obj.as.s16;
1117
return true;
1118
1119
@@ -1128,7 +1128,7 @@ bool cmp_read_s32(cmp_ctx_t *ctx, int32_t *i) {
1128
1129
1130
1131
- *i = be32(obj.as.s32);
+ *i = obj.as.s32;
1132
1133
1134
@@ -1143,7 +1143,7 @@ bool cmp_read_s64(cmp_ctx_t *ctx, int64_t *l) {
1143
1144
1145
1146
- *l = be64(obj.as.s64);
+ *l = obj.as.s64;
1147
1148
1149
0 commit comments