Explorar el Código

(print_total_stats): Add default case

Sergey Poznyakoff hace 19 años
padre
commit
c027e03924
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      src/buffer.c

+ 3 - 0
src/buffer.c

@@ -338,6 +338,9 @@ print_total_stats ()
       print_stats (stderr, _("Total bytes read"),
 		   records_read * record_size);
       break;
+
+    default:
+      abort ();
     }
 }