Changeset 7e752b2 in mainline for uspace/app/edit/edit.c


Ignore:
Timestamp:
2010-11-26T01:33:20Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bf61d3a
Parents:
202f57b
Message:
  • correct printf() formatting strings and corresponding arguments
  • minor cstyle changes and other small fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/edit/edit.c

    r202f57b r7e752b2  
    781781                        c = str_decode(row_buf, &pos, size);
    782782                        if (c != '\t') {
    783                                 printf("%lc", c);
     783                                printf("%lc", (wint_t) c);
    784784                                s_column += 1;
    785785                        } else {
     
    830830        int n = printf(" %d, %d: File '%s'. Ctrl-Q Quit  Ctrl-S Save  "
    831831            "Ctrl-E Save As", coord.row, coord.column, fname);
    832         printf("%*s", scr_columns - 1 - n, "");
     832       
     833        int pos = scr_columns - 1 - n;
     834        printf("%*s", pos, "");
    833835        fflush(stdout);
    834836        console_set_style(con, STYLE_NORMAL);
     
    11531155        console_set_pos(con, 0, scr_rows - 1);
    11541156        console_set_style(con, STYLE_INVERTED);
    1155         printf(" %*s ", -(scr_columns - 3), str);
     1157       
     1158        int pos = -(scr_columns - 3);
     1159        printf(" %*s ", pos, str);
    11561160        fflush(stdout);
    11571161        console_set_style(con, STYLE_NORMAL);
Note: See TracChangeset for help on using the changeset viewer.