Skip to content

Commit

Permalink
cleanup: fix cast warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
philljj committed Sep 13, 2024
1 parent fec9488 commit e276b54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/x509.c
Original file line number Diff line number Diff line change
Expand Up @@ -5856,7 +5856,7 @@ static int X509PrintDirType(char * dst, int max_len, const DNS_entry * entry)
word32 k = 0;
word32 i = 0;
const char * src = entry->name;
word32 src_len = XSTRLEN(src);
word32 src_len = (word32)XSTRLEN(src);
int total_len = 0;
int bytes_left = max_len;
int fld_len = 0;
Expand Down

0 comments on commit e276b54

Please sign in to comment.