Fix header include order for some files

Include common and libraries includes before local ones as
stated by style.

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
This commit is contained in:
Frediano Ziglio 2016-11-12 18:30:47 +00:00
parent eb02c0653d
commit b900147870
3 changed files with 6 additions and 5 deletions

View File

@ -19,13 +19,13 @@
#include <config.h>
#endif
#include <common/marshaller.h>
#include <common/generated_server_marshallers.h>
#include "dcc-private.h"
#include "display-channel-private.h"
#include "red-channel-client-private.h"
#include <common/marshaller.h>
#include <common/generated_server_marshallers.h>
typedef enum {
FILL_BITS_TYPE_INVALID,
FILL_BITS_TYPE_CACHE,

View File

@ -23,12 +23,13 @@
#include <inttypes.h>
#include <zlib.h>
#include <pthread.h>
#include <glib.h>
#include "reds.h"
#include "red-qxl.h"
#include "red-common.h"
#include "memslot.h"
#include "red-parse-qxl.h"
#include <glib.h>
#define QXLPHYSICAL_FROM_PTR(ptr) ((QXLPHYSICAL)(intptr_t)(ptr))
#define QXLPHYSICAL_TO_PTR(phy) ((void*)(intptr_t)(phy))

View File

@ -28,6 +28,7 @@
#include <common/marshaller.h>
#include <common/generated_server_marshallers.h>
#include <common/snd_codec.h>
#include "spice.h"
#include "red-common.h"
@ -41,7 +42,6 @@
#include "red-channel-client-private.h"
#include "red-client.h"
#include "sound.h"
#include <common/snd_codec.h>
#include "demarshallers.h"
#include "main-channel-client.h"