fix type punning

Original commit message from CVS:
fix type punning
This commit is contained in:
David Schleef 2003-07-01 02:27:06 +00:00 committed by Tim-Philipp Müller
parent c28be5c967
commit 9a04390288

View file

@ -424,7 +424,7 @@ gst_jack_loop (GstElement *element)
GstJack *this;
GList *pads;
gint len, peeked_len;
gchar *peeked;
guint8 *peeked;
gint avail;
GstEvent *event;
GstJackPad *pad;
@ -445,7 +445,7 @@ gst_jack_loop (GstElement *element)
pad->bs = gst_bytestream_new (pad->pad);
read:
peeked_len = gst_bytestream_peek_bytes (pad->bs, (guint8**)&peeked, len);
peeked_len = gst_bytestream_peek_bytes (pad->bs, &peeked, len);
if (peeked_len < len) {
gst_bytestream_get_status(pad->bs, &avail, &event);
if (event) {