projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bec69e2
)
sdp: Remove useless check in macro
author
Edward Hervey
<bilboed@bilboed.com>
Fri, 17 Sep 2010 08:43:04 +0000
(10:43 +0200)
committer
Edward Hervey
<bilboed@bilboed.com>
Fri, 17 Sep 2010 08:43:04 +0000
(10:43 +0200)
A signed char is always < 128. Fixes a warning on macosx build.
gst-libs/gst/sdp/gstsdpmessage.c
patch
|
blob
|
history
diff --git
a/gst-libs/gst/sdp/gstsdpmessage.c
b/gst-libs/gst/sdp/gstsdpmessage.c
index 7e3bbb834303724a1cd6f6c88aa4695c8dc9f3a8..ba89275b16b4324f8059d667809e1eb867fe8da4 100644
(file)
--- a/
gst-libs/gst/sdp/gstsdpmessage.c
+++ b/
gst-libs/gst/sdp/gstsdpmessage.c
@@
-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: