-syntax fixes
authorChristian Grothoff <christian@grothoff.org>
Fri, 28 Sep 2012 09:49:04 +0000 (09:49 +0000)
committerChristian Grothoff <christian@grothoff.org>
Fri, 28 Sep 2012 09:49:04 +0000 (09:49 +0000)
src/testbed/testbed_api_operations.c
src/testbed/testbed_api_peers.c
src/testbed/testbed_api_services.c

index b3cd1c0906a53558e32e9585c30efff6ac564107..b897cb453ddb480889e5154b08c5bdd6529711e2 100644 (file)
@@ -86,7 +86,7 @@ enum OperationState
     /**
      * The operation has started
      */
-  OP_STATE_STARTED,
+  OP_STATE_STARTED
 };
 
 
index 9b35209ca48aa053dc1495b5af825505c2b03eb2..38c8f6aa8f74767f6bb561363a69087f8e26a0a2 100644 (file)
@@ -71,7 +71,7 @@ opstart_peer_create (void *cls)
   msg->config_size = htonl (c_size);
   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
   GNUNET_TESTBED_queue_message_ (opc->c, &msg->header);
-};
+}
 
 
 /**
index 78d441c612ec06ea212cae783b9f95ce9a0c15fb..caa0a58be28e395eab66afeea8e0688fcf5866f3 100644 (file)
  */
 enum State
 {
-    /**
-     * Initial state
-     */
+  /**
+   * Initial state
+   */
   INIT,
 
-    /**
-     * The configuration request has been sent
-     */
+  /**
+   * The configuration request has been sent
+   */
   CFG_REQUEST_QUEUED,
-
-    /**
-     * connected to service
-     */
-  SERVICE_CONNECTED,
+  
+  /**
+   * connected to service
+   */
+  SERVICE_CONNECTED
 
 };