Changeset 24a44ec in mainline


Ignore:
Timestamp:
2008-12-27T11:33:08Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4f75b63
Parents:
9a63657
Message:

Another memmove() instead of memcpy().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/fb/fb.c

    r9a63657 r24a44ec  
    255255        }
    256256       
    257         memcpy(backbuf, backbuf + cols, cols * (rows - 1));
     257        memmove(backbuf, backbuf + cols, cols * (rows - 1));
    258258        memsetb(&backbuf[BB_POS(0, rows - 1)], cols, 0);
    259259}
Note: See TracChangeset for help on using the changeset viewer.