Skip to content

Commit

Permalink
Fix clang macos warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ppomes committed Sep 9, 2024
1 parent c05a16f commit 4943088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/myanon.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ anonymized_res_st anonymize_token(bool quoted, anon_base_st *config, char *token
case AM_SUBSTRING:
res_st.len = MIN(worktokenlen, config->len);
mysubstr((char *)&(res_st.data[0]), worktoken, sizeof(res_st.data), res_st.len);
res_st.len = strlen(&(res_st.data[0]));
res_st.len = strlen((char *)&(res_st.data[0]));
DEBUG_MSG("%d, %d, %d, %s\n", worktokenlen, config->len, res_st.len, res_st.data);
break;

Expand Down

0 comments on commit 4943088

Please sign in to comment.