Revert "sdp: Remove useless check in macro"

This reverts commit e6a041b69f.

It's not a useless check, the signedness of "char" and "gchar" is
defined by the ABI.
This commit is contained in:
Sebastian Dröge 2010-09-17 11:44:29 +02:00
parent e6a041b69f
commit 3328f89c49

View file

@ -598,7 +598,7 @@ static const guchar acceptable[96] = {
static const gchar hex[16] = "0123456789ABCDEF"; static const gchar hex[16] = "0123456789ABCDEF";
#define ACCEPTABLE_CHAR(a) ((a)>=32 && acceptable[(a)-32]) #define ACCEPTABLE_CHAR(a) ((a)>=32 && (a)<128 && acceptable[(a)-32])
/** /**
* gst_sdp_message_as_uri: * gst_sdp_message_as_uri: