guint -> unsigned int guint8 -> uint8_t guint16 -> uint16_t guint32 -> uint32_t guint64 -> uint64_t Add "#include <inttypes.h>" where appropriate. --- plugins/neard.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/neard.c b/plugins/neard.c index e4a4d71..645202d 100644 --- a/plugins/neard.c +++ b/plugins/neard.c @@ -25,6 +25,7 @@ #include <config.h> #endif +#include <inttypes.h> #include <errno.h> #include <gdbus/gdbus.h> @@ -49,7 +50,7 @@ #define AGENT_CARRIER_TYPE "bluetooth" #define ERROR_INTERFACE "org.neard.HandoverAgent.Error" -static guint watcher_id = 0; +static unsigned int watcher_id = 0; static char *neard_service = NULL; static bool agent_register_postpone = false; -- 1.8.2.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html