diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2016-01-30 17:31:41 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2016-01-30 17:35:33 +0000 |
commit | 0770fa4ed55f375cdb54bf22742a7eef6da8808e (patch) | |
tree | bc04b8060f1cdb806792e118f7c00cc63ff17cc3 /sys | |
parent | 129b04fad01452e18bab8b9f82e084768e88cc16 (diff) | |
download | gstreamer-plugins-bad-0770fa4ed55f375cdb54bf22742a7eef6da8808e.tar.gz |
dvbsrc: drop unnecessary use of _stdint.h
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dvb/gstdvbsrc.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/dvb/gstdvbsrc.c b/sys/dvb/gstdvbsrc.c index 18544e739..b93255f35 100644 --- a/sys/dvb/gstdvbsrc.c +++ b/sys/dvb/gstdvbsrc.c @@ -99,7 +99,6 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "_stdint.h" #include <unistd.h> @@ -2056,8 +2055,8 @@ static void gst_dvbsrc_output_frontend_stats (GstDvbSrc * src) { fe_status_t status; - uint16_t snr, _signal; - uint32_t ber, bad_blks; + guint16 snr, _signal; + guint32 ber, bad_blks; GstMessage *message; GstStructure *structure; int fe_fd = src->fd_frontend; @@ -2099,7 +2098,7 @@ error_out: struct diseqc_cmd { struct dvb_diseqc_master_cmd cmd; - uint32_t wait; + guint32 wait; }; static void |