diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-04 09:34:41 +0200 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-04 10:07:28 +0200 |
commit | b89caf381ba7a38c1ac98fe4b04a261cf62c1ad1 (patch) | |
tree | 6226351b0a2aabc7d00b8d772072653d5ad50022 /plugins | |
parent | 579eb4f247b7383d4f50f79e7802f9b48ffadf7a (diff) |
add missing config.h includes
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/console.c | 4 | ||||
-rw-r--r-- | plugins/gateways.c | 4 | ||||
-rw-r--r-- | plugins/test.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/console.c b/plugins/console.c index 6e24e4fca..7dde24fac 100644 --- a/plugins/console.c +++ b/plugins/console.c @@ -17,10 +17,10 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "console.h" - #include "config.h" +#include "console.h" + #include <string.h> #include <telepathy-glib/telepathy-glib.h> diff --git a/plugins/gateways.c b/plugins/gateways.c index b9b232325..c40dc5191 100644 --- a/plugins/gateways.c +++ b/plugins/gateways.c @@ -17,10 +17,10 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "gateways.h" - #include "config.h" +#include "gateways.h" + #include <string.h> #include <telepathy-glib/telepathy-glib.h> diff --git a/plugins/test.c b/plugins/test.c index ba1f5fd3f..b145373f4 100644 --- a/plugins/test.c +++ b/plugins/test.c @@ -1,5 +1,5 @@ -#include "test.h" #include "config.h" +#include "test.h" #include <stdio.h> |