Skip to content

Commit

Permalink
nat_traversal: declare flag literal as unsigned
Browse files Browse the repository at this point in the history
- GH #2954
  • Loading branch information
miconda committed Nov 29, 2021
1 parent 1ba6f2f commit 8c30109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/nat_traversal/nat_traversal.c
Expand Up @@ -85,7 +85,7 @@ MODULE_VERSION


/* WARNING: Keep this aligned with parser/msg_parser.h! */
#define FL_DO_KEEPALIVE (1 << 31)
#define FL_DO_KEEPALIVE (1u << 31)

#define HASH_SIZE 512

Expand Down

0 comments on commit 8c30109

Please sign in to comment.