Skip to content

Commit

Permalink
Merge pull request #8 from rlm2002/removingWarnings
Browse files Browse the repository at this point in the history
Fix implicit conversion warnings for client and server id values
  • Loading branch information
bigbrett authored May 30, 2024
2 parents f40fb37 + 282581e commit 06aa5a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion posix/tcp/wh_client_tcp/wh_client_tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ enum {

#define WH_SERVER_TCP_IPSTRING "127.0.0.1"
#define WH_SERVER_TCP_PORT 23456
#define WH_CLIENT_ID 1234
#define WH_CLIENT_ID 12

static void* wh_ClientTask(void* cf)
{
Expand Down
2 changes: 1 addition & 1 deletion posix/tcp/wh_server_tcp/wh_server_tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ enum {

#define WH_SERVER_TCP_IPSTRING "127.0.0.1"
#define WH_SERVER_TCP_PORT 23456
#define WH_SERVER_ID 5678
#define WH_SERVER_ID 56

static void* wh_ServerTask(void* cf)
{
Expand Down

0 comments on commit 06aa5a2

Please sign in to comment.