X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fascii.c;h=3113997e4893d515d73d59778e54b0b18562cde2;hb=96994a54e60e9c95b8bba54c2281acf7059b1203;hp=242e75286f6710c21808fab33fc398e352ade2d0;hpb=369c24f1d085a41ec274ebae5fc198fcee567653;p=pspp diff --git a/src/output/ascii.c b/src/output/ascii.c index 242e75286f..3113997e48 100644 --- a/src/output/ascii.c +++ b/src/output/ascii.c @@ -719,7 +719,7 @@ text_draw (struct ascii_driver *a, enum table_halign halign, int options, int ofs; ofs = width = 0; - for (ofs = 0; ofs < n; ) + for (ofs = 0; ofs < n;) { ucs4_t uc; int mblen; @@ -864,7 +864,7 @@ ascii_layout_cell (struct ascii_driver *a, const struct table_cell *cell, size_t graph_ofs; size_t ofs; - for (ofs = 0; ofs < n; ) + for (ofs = 0; ofs < n;) { ucs4_t uc; int mblen; @@ -976,7 +976,7 @@ ascii_test_flush (struct output_driver *driver) { struct ascii_driver *a = ascii_driver_cast (driver); - for (size_t i = a->allocated_lines; i-- > 0; ) + for (size_t i = a->allocated_lines; i-- > 0;) if (a->lines[i].width) { ascii_output_lines (a, i + 1);