Skip to content

Commit

Permalink
rtpengine: unsigned error field of 1-bit to prevent signness warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Jan 4, 2024
1 parent ad13659 commit aab734e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/rtpengine/bencode.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct bencode_buffer
{
struct __bencode_buffer_piece *pieces;
struct __bencode_free_list *free_list;
int error : 1; /* set to !0 if allocation failed at any point */
unsigned int error : 1; /* set to !0 if allocation failed at any point */
};


Expand Down

0 comments on commit aab734e

Please sign in to comment.