Changeset b077886e in mainline for uspace/app/edit/edit.c


Ignore:
Timestamp:
2009-09-13T23:41:37Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
99e5526, c35aabe
Parents:
3052ff4 (diff), 2ac62cf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

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

    r3052ff4 rb077886e  
    8888static pane_t pane;
    8989
    90 static ipcarg_t scr_rows, scr_columns;
     90static int scr_rows, scr_columns;
    9191
    9292#define ROW_BUF_SIZE 4096
     
    362362{
    363363        int sh_rows, rows;
    364         int i;
    365         unsigned j;
     364        int i, j;
    366365
    367366        sheet_get_num_rows(&doc.sh, &sh_rows);
     
    452451                /* Fill until the end of display area. */
    453452
    454                 if (str_length(row_buf) < scr_columns)
     453                if (str_length(row_buf) < (unsigned) scr_columns)
    455454                        fill = scr_columns - str_length(row_buf);
    456455                else
Note: See TracChangeset for help on using the changeset viewer.