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:
09ae856
)
check: Hopefully fix an 'may be used uninitialized' warning on OS/X
author
Jan Schmidt
<thaytan@noraisin.net>
Thu, 8 Oct 2009 16:19:38 +0000
(17:19 +0100)
committer
Jan Schmidt
<thaytan@noraisin.net>
Thu, 8 Oct 2009 16:19:38 +0000
(17:19 +0100)
tests/check/libs/bytereader.c
patch
|
blob
|
history
diff --git
a/tests/check/libs/bytereader.c
b/tests/check/libs/bytereader.c
index
b08613d
..
a1a1626
100644
(file)
--- a/
tests/check/libs/bytereader.c
+++ b/
tests/check/libs/bytereader.c
@@
-130,7
+130,7
@@
GST_START_TEST (test_get_uint_le)
0xfe, 0xdc, 0xba, 0x09, 0x87, 0x65, 0x43, 0x21
};
GstByteReader reader = GST_BYTE_READER_INIT (data, 16);
- guint8 a;
+ guint8 a
= 0
;
guint16 b = 0;
guint32 c = 0;
guint64 d = 0;
@@
-173,7
+173,7
@@
GST_START_TEST (test_get_uint_be)
0xfe, 0xdc, 0xba, 0x09, 0x87, 0x65, 0x43, 0x21
};
GstByteReader reader = GST_BYTE_READER_INIT (data, 16);
- guint8 a;
+ guint8 a
= 0
;
guint16 b = 0;
guint32 c = 0;
guint64 d = 0;