X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=dump-to-eeprom;h=e62c7303dbe157202320aaf02605eb81933176a6;hb=e32c00fbbc42dfb6c9057a98daffa8955f86181e;hp=ec27dce95e4fba8ab08b6577d4b2986ebada155f;hpb=8ab6d6ccba23da63100cc863dcc6b37f2ba4a286;p=fw%2Ftmflights diff --git a/dump-to-eeprom b/dump-to-eeprom index ec27dce..e62c730 100755 --- a/dump-to-eeprom +++ b/dump-to-eeprom @@ -118,7 +118,7 @@ void doit (string name) { twixt (file f = File::open(name, "r"); File::close(f)) - dump_file(f, 9); + dump_file(f, 8); } void @@ -128,7 +128,7 @@ main() for (int i = 1; i < dim(argv); i++) doit(argv[i]); } else { - dump_file(stdin, 9); + dump_file(stdin, 8); } }