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.
This commit is contained in:
Maarten Bosmans 2011-03-09 10:00:20 +01:00 committed by Colin Guthrie
parent ecf09f2cd6
commit b3721a12c5
21 changed files with 32 additions and 41 deletions

View file

@ -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;