Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 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 7)
set(CTR_VERSION_PATCH 0)
set(CTR_VERSION_PATCH 1)
set(CTR_VERSION_STR "${CTR_VERSION_MAJOR}.${CTR_VERSION_MINOR}.${CTR_VERSION_PATCH}")

# Define __FILENAME__ consistently across Operating Systems
Expand Down
6 changes: 3 additions & 3 deletions include/ctraces/ctr_encode_opentelemetry.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
* limitations under the License.
*/

#ifndef CMT_ENCODE_OPENTELEMETRY_H
#define CMT_ENCODE_OPENTELEMETRY_H
#ifndef CTR_ENCODE_OPENTELEMETRY_H
#define CTR_ENCODE_OPENTELEMETRY_H

#include <ctraces/ctraces.h>

cfl_sds_t ctr_encode_opentelemetry_create(struct ctrace *ctr);
void ctr_encode_opentelemetry_destroy(cfl_sds_t text);

#endif
#endif
1 change: 1 addition & 0 deletions src/ctr_id.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ cfl_sds_t ctr_id_to_lower_base16(struct ctrace_id *cid)
}

out[i * 2] = 0;
cfl_sds_set_len(out, len * 2);

return out;
}
Expand Down
Loading