diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-07-27 22:37:32 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-07-27 22:38:26 -0700 |
commit | 267c74b59a5f148bd28233f25bc794a3a4893e8e (patch) | |
tree | 0b583a305e2fe13edb477d88d15ac0be5a43dbd2 /translate_subx_emulated | |
parent | 619944524382bee5fb10efae2273e6cc57fbd421 (diff) | |
download | mu-267c74b59a5f148bd28233f25bc794a3a4893e8e.tar.gz |
shell: render image from pbm data stream
Diffstat (limited to 'translate_subx_emulated')
-rwxr-xr-x | translate_subx_emulated | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/translate_subx_emulated b/translate_subx_emulated index d6fc009b..6a025e9c 100755 --- a/translate_subx_emulated +++ b/translate_subx_emulated @@ -59,7 +59,7 @@ then exit 1 fi -if [ `wc -l < labels` -gt 16384 ] # 0x4000 stream capacity in abort.subx +if [ `wc -l < labels` -gt 20480 ] # 0x5000 stream capacity in abort.subx then echo "abort will go into infinite regress" exit 1 |