Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
make sure no variable seem to be used uninitialized to this stupid gcc which gets...
[simgrid.git] / examples / gras / ping / ping.c
index b422cbc..a6c84d2 100644 (file)
@@ -127,7 +127,7 @@ int server (int argc,char *argv[]) {
 
 int client(int argc,char *argv[]) {
   xbt_ex_t e; 
-  gras_socket_t toserver; /* peer */
+  gras_socket_t toserver=NULL; /* peer */
 
   gras_socket_t from;
   int ping, pong;