diff options
author | Maarten Bosmans <mkbosmans@gmail.com> | 2011-08-10 10:30:14 +0200 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2011-08-11 13:23:21 +0200 |
commit | 464ddcdfeacc3ac8c98d13128e35030aae096110 (patch) | |
tree | dd94d3643594b09f4df51bc5a2dcf1af3bc56704 | |
parent | f10da7683d4b147cc1fa8ce94608bc3e3e17f1f4 (diff) |
Add some missing format.h includes
-rw-r--r-- | src/pulse/ext-device-restore.h | 2 | ||||
-rw-r--r-- | src/pulsecore/sink.c | 1 | ||||
-rw-r--r-- | src/pulsecore/sink.h | 1 | ||||
-rw-r--r-- | src/pulsecore/source.c | 1 | ||||
-rw-r--r-- | src/pulsecore/source.h | 1 |
5 files changed, 5 insertions, 1 deletions
diff --git a/src/pulse/ext-device-restore.h b/src/pulse/ext-device-restore.h index 829beba5..65dab431 100644 --- a/src/pulse/ext-device-restore.h +++ b/src/pulse/ext-device-restore.h @@ -24,8 +24,8 @@ ***/ #include <pulse/context.h> -#include <pulse/version.h> #include <pulse/format.h> +#include <pulse/version.h> /** \file * diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c index 77c665f3..714b3d2e 100644 --- a/src/pulsecore/sink.c +++ b/src/pulsecore/sink.c @@ -29,6 +29,7 @@ #include <string.h> #include <pulse/introspect.h> +#include <pulse/format.h> #include <pulse/utf8.h> #include <pulse/xmalloc.h> #include <pulse/timeval.h> diff --git a/src/pulsecore/sink.h b/src/pulsecore/sink.h index 239936bb..8aa04b86 100644 --- a/src/pulsecore/sink.h +++ b/src/pulsecore/sink.h @@ -30,6 +30,7 @@ typedef struct pa_sink_volume_change pa_sink_volume_change; #include <inttypes.h> #include <pulse/def.h> +#include <pulse/format.h> #include <pulse/sample.h> #include <pulse/channelmap.h> #include <pulse/volume.h> diff --git a/src/pulsecore/source.c b/src/pulsecore/source.c index 9764a883..31ce39d1 100644 --- a/src/pulsecore/source.c +++ b/src/pulsecore/source.c @@ -27,6 +27,7 @@ #include <stdio.h> #include <stdlib.h> +#include <pulse/format.h> #include <pulse/utf8.h> #include <pulse/xmalloc.h> #include <pulse/timeval.h> diff --git a/src/pulsecore/source.h b/src/pulsecore/source.h index 13d279da..50cec77b 100644 --- a/src/pulsecore/source.h +++ b/src/pulsecore/source.h @@ -29,6 +29,7 @@ typedef struct pa_source_volume_change pa_source_volume_change; #include <inttypes.h> #include <pulse/def.h> +#include <pulse/format.h> #include <pulse/sample.h> #include <pulse/channelmap.h> #include <pulse/volume.h> |