From c0a90931717d952a1ee2c899466db2db1d9d8db5 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Sat, 8 Oct 2011 11:11:51 +0200 Subject: audio.h: Fix type --- src/audio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio.h b/src/audio.h index 7092d46..6823159 100644 --- a/src/audio.h +++ b/src/audio.h @@ -15,7 +15,7 @@ struct cmumble_audio { GstElement *record_pipeline; GstAppSink *sink; - uint8_t celt_header_packet[sizeof(CELTHeader)]; + guint8 celt_header_packet[sizeof(CELTHeader)]; CELTHeader celt_header; CELTMode *celt_mode; }; -- cgit