Minor fix

This commit is contained in:
Stephen Seo 2021-08-18 18:00:45 +09:00
parent 39aa3fce75
commit 2e1c9414f6

View file

@ -137,7 +137,9 @@ int main(int argc, char **argv) {
Sequence seq = initSequence();
while(seq.indices_end < count) {
nextSeqItem(&seq);
if(nextSeqItem(&seq)) {
return 1;
}
}
printf("String is %s\n", seq.buf);