Changeset b9f1585 in mainline for uspace/lib/c


Ignore:
Timestamp:
2019-01-03T06:53:22Z (7 years ago)
Author:
Vojtech Horky <vojtech.horky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
043d464f
Parents:
b4a4ad94 (diff), 7acd787 (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 upstream changes

Location:
uspace/lib/c
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/Makefile

    rb4a4ad94 rb9f1585  
    165165        generic/assert.c \
    166166        generic/bsearch.c \
     167        generic/pci.c \
    167168        generic/pio_trace.c \
    168169        generic/qsort.c \
  • uspace/lib/c/generic/io/chargrid.c

    rb4a4ad94 rb9f1585  
    263263void chargrid_set_cursor(chargrid_t *scrbuf, sysarg_t col, sysarg_t row)
    264264{
     265        if (col >= scrbuf->cols || row >= scrbuf->rows)
     266                return;
     267
    265268        scrbuf->col = col;
    266269        scrbuf->row = row;
Note: See TracChangeset for help on using the changeset viewer.