edbus: Don't use "bool" as a variable name
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Mon, 17 Dec 2012 18:24:37 +0000 (18:24 +0000)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Mon, 17 Dec 2012 18:24:37 +0000 (18:24 +0000)
Using bool as variable name is asking for trouble in C99. If we end up
including stdbool.h, this would fail.

SVN revision: 81171

legacy/edbus/src/examples/client.c

index c1081bb6deeffc3fc888647b9880a9a9f802683b..6189e0f0ba51d3a98d78864f865ad680eec7ca77 100644 (file)
@@ -43,20 +43,20 @@ static void
 _on_send_bool(void *data, const EDBus_Message *msg, EDBus_Pending *pending)
 {
    const char *errname, *errmsg;
-   Eina_Bool bool;
+   Eina_Bool b;
    if (edbus_message_error_get(msg, &errname, &errmsg))
      {
         fprintf(stderr, "Error: %s %s\n", errname, errmsg);
         return;
      }
 
-   if (!edbus_message_arguments_get(msg, "b", &bool))
+   if (!edbus_message_arguments_get(msg, "b", &b))
      {
         fprintf(stderr, "Error: could not get entry contents\n");
         return;
      }
 
-   if (bool != bool_value) printf("Error on bool\n");
+   if (b != bool_value) printf("Error on bool\n");
    else test();
 }