test-socket-signal: indentation fixes to server code
authorRazvan Deaconescu <razvan.deaconescu@cs.pub.ro>
Tue, 19 Oct 2010 17:34:41 +0000 (20:34 +0300)
committerRazvan Deaconescu <razvan.deaconescu@cs.pub.ro>
Tue, 19 Oct 2010 17:34:41 +0000 (20:34 +0300)
Utils/test-socket-signal/server.c

index a4b0028..3f54695 100644 (file)
 #include "utils.h"
 
 #define DEFAULT_SERVER_LISTEN_PORT     43210
-#define SERVER_BACKLOG                 5
+#define SERVER_BACKLOG         5
 
 #define PACKET_PAYLOAD_SIZE            120
 #define PACKET_INDEX_SIZE              sizeof(unsigned long long)
 #define PACKET_TIMESPEC_SIZE           sizeof(time_t)
-#define PACKET_SIZE            (PACKET_PAYLOAD_SIZE + PACKET_INDEX_SIZE + PACKET_TIMESPEC_SIZE)
+#define PACKET_SIZE                    (PACKET_PAYLOAD_SIZE + PACKET_INDEX_SIZE + PACKET_TIMESPEC_SIZE)
 
 static char data[PACKET_SIZE];