diff options
author | Maarten Bosmans <mkbosmans@gmail.com> | 2011-03-09 10:00:20 +0100 |
---|---|---|
committer | Colin Guthrie <cguthrie@mandriva.org> | 2011-03-11 11:49:39 +0000 |
commit | b3721a12c5c31ae55141ff46af0c553d060fe363 (patch) | |
tree | dc6e254719e83de268fbd5363ed58adaa15ce7b7 /src/utils/pax11publish.c | |
parent | ecf09f2cd6bf2f46b0d2402c700ab618c090bd4c (diff) |
Fixup #include directives according to Coding Style
Use #include "header.h" if functionality of header.h is implemented
and #include <header.h> if functionality of header.h is used.
Diffstat (limited to 'src/utils/pax11publish.c')
-rw-r--r-- | src/utils/pax11publish.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/pax11publish.c b/src/utils/pax11publish.c index a6f058a1e..6600363b1 100644 --- a/src/utils/pax11publish.c +++ b/src/utils/pax11publish.c @@ -33,6 +33,7 @@ #include <pulse/util.h> #include <pulse/i18n.h> +#include <pulse/client-conf.h> #include <pulsecore/core-util.h> #include <pulsecore/log.h> @@ -40,7 +41,6 @@ #include <pulsecore/native-common.h> #include <pulsecore/x11prop.h> -#include "../pulse/client-conf.h" int main(int argc, char *argv[]) { const char *dname = NULL, *sink = NULL, *source = NULL, *server = NULL, *cookie_file = PA_NATIVE_COOKIE_FILE; |