Changeset bd02038 in mainline for console/console.c


Ignore:
Timestamp:
2006-06-09T08:29:25Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c891ed39
Parents:
e92aabf
Message:

Fb internal update.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • console/console.c

    re92aabf rbd02038  
    215215        connection_t *conn;
    216216        static int console_pixmap = -1;
    217         int i, j;
     217        int i, j, rc;
    218218        keyfield_t *field;
    219219        style_t *style;
     
    258258                                interbuffer[i + j*conn->screenbuffer.size_x] = *get_field_at(&(conn->screenbuffer),i, j);
    259259                /* This call can preempt, but we are already at the end */
    260                 j = async_req_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL);           
     260                rc = async_req_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL);           
    261261        };
    262262       
    263         if ((!interbuffer) || (j != 0)){
     263        if ((!interbuffer) || (j != 0)) {
    264264                set_style(&conn->screenbuffer.style);
    265265                clrscr();
Note: See TracChangeset for help on using the changeset viewer.