mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 23:36:03 +00:00
Update cosy converter
This commit is contained in:
parent
4434041146
commit
9d7f57d0ea
@ -193,7 +193,10 @@ int decompressCard(
|
||||
|
||||
idx = 0;
|
||||
|
||||
while (((ch = fgetc(src)) != -1) && (ch != 0)) {
|
||||
while ((ch = fgetc(src)) != -1) {
|
||||
if (ch == 0)
|
||||
continue;
|
||||
|
||||
if (ch == PREFIX) {
|
||||
if ((ch = fgetc(src)) == -1)
|
||||
break;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user