(print_total_stats): Add default case

This commit is contained in:
Sergey Poznyakoff
2006-06-24 16:47:29 +00:00
parent 6d615f12d4
commit c027e03924

View File

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