add sockets wrappers
[gnulib.git] / tests / test-i-ring.c
index 0e0691a..05270d7 100644 (file)
@@ -1,5 +1,5 @@
 /* Test the simple ring buffer.
-   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+   Copyright (C) 2006-2008 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -29,6 +29,7 @@
       if (!(expr))                                                          \
         {                                                                   \
           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
+          fflush (stderr);                                                  \
           abort ();                                                         \
         }                                                                   \
     }                                                                       \
 int
 main ()
 {
+  int o;
   I_ring ir;
   i_ring_init (&ir, -1);
-  int o = i_ring_push (&ir, 1);
+  o = i_ring_push (&ir, 1);
   ASSERT (o == -1);
   o = i_ring_push (&ir, 2);
   ASSERT (o == -1);