mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
sdp: Remove useless check in macro
A signed char is always < 128. Fixes a warning on macosx build.
This commit is contained in:
parent
bec69e20ae
commit
e6a041b69f
1 changed files with 1 additions and 1 deletions
|
@ -598,7 +598,7 @@ static const guchar acceptable[96] = {
|
|||
|
||||
static const gchar hex[16] = "0123456789ABCDEF";
|
||||
|
||||
#define ACCEPTABLE_CHAR(a) ((a)>=32 && (a)<128 && acceptable[(a)-32])
|
||||
#define ACCEPTABLE_CHAR(a) ((a)>=32 && acceptable[(a)-32])
|
||||
|
||||
/**
|
||||
* gst_sdp_message_as_uri:
|
||||
|
|
Loading…
Reference in a new issue