Skip to content

Commit

Permalink
rtpengine: fix single-bit field type
Browse files Browse the repository at this point in the history
(cherry picked from commit 9c4f6c1)
  • Loading branch information
l2dy authored and liviuchircu committed Sep 4, 2020
1 parent 75c49e6 commit 4e4c9c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/rtpengine/bencode.h
Expand Up @@ -71,7 +71,7 @@ struct bencode_item {
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 4e4c9c6

Please sign in to comment.