examples/service-selection.c: Fix compilation warning
authorJavier Jardón <javier.jardon@codethink.co.uk>
Wed, 1 Feb 2012 13:21:37 +0000 (13:21 +0000)
committerJavier Jardón <javier.jardon@codethink.co.uk>
Wed, 1 Feb 2012 13:21:37 +0000 (13:21 +0000)
Add the stdio include for the printf function

examples/service-selection.c

index f50d1dc..48122be 100644 (file)
@@ -1,10 +1,11 @@
-#include <glib.h>
-#include "libmoonshot.h"
+#include <libmoonshot.h>
+
+#include <stdio.h>
 
 int main (int argc, char *argv[])
 {
     MoonshotError *error = NULL;
-    gboolean        success;
+    int success;
 
     char *nai,
          *password,