Skip to content

Commit 911e100

Browse files
Add space in cast to conform to the style
1 parent 8d35d67 commit 911e100

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/client_server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ int main()
7777
uint16_t pp2_hdr_len;
7878
/* Add SSL TLVs */
7979
/* IMPORTANT: Always clear the pp_info to be passed in pp_create_hdr() because TLVs are allocated in heap. Otherwise memory will be leaked */
80-
if (!pp_info_add_ssl(&pp_info_in_v2, "TLSv1.2", "ECDHE-RSA-AES128-GCM-SHA256", "SHA256", "RSA2048", (uint8_t*)"example.com", 11))
80+
if (!pp_info_add_ssl(&pp_info_in_v2, "TLSv1.2", "ECDHE-RSA-AES128-GCM-SHA256", "SHA256", "RSA2048", (uint8_t*) "example.com", 11))
8181
{
8282
fprintf(stderr, "pp_info_add_ssl() failed\n");
8383
pp_info_clear(&pp_info_in_v2);

0 commit comments

Comments
 (0)