Skip to content

Commit

Permalink
lib: ctraces: upgrade to v0.5.2
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Silva <[email protected]>
  • Loading branch information
edsiper committed Jul 16, 2024
1 parent 8b4d95e commit be74a35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ctraces/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ endif()
# CTraces Version
set(CTR_VERSION_MAJOR 0)
set(CTR_VERSION_MINOR 5)
set(CTR_VERSION_PATCH 1)
set(CTR_VERSION_PATCH 2)
set(CTR_VERSION_STR "${CTR_VERSION_MAJOR}.${CTR_VERSION_MINOR}.${CTR_VERSION_PATCH}")

# Define __FILENAME__ consistently across Operating Systems
Expand Down
2 changes: 2 additions & 0 deletions lib/ctraces/include/ctraces/ctr_variant_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,7 @@ static inline int unpack_cfl_variant_string(mpack_reader_t *reader,
}

(*value)->type = CFL_VARIANT_STRING;
(*value)->size = value_length;

return 0;
}
Expand Down Expand Up @@ -465,6 +466,7 @@ static inline int unpack_cfl_variant_binary(mpack_reader_t *reader,
}

(*value)->type = CFL_VARIANT_BYTES;
(*value)->size = value_length;

return 0;
}
Expand Down

0 comments on commit be74a35

Please sign in to comment.