Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/cat/cat.c

    r28a3e74 r3cefd70  
    164164{
    165165        int fd, bytes = 0, count = 0, reads = 0;
     166        off64_t total = 0;
    166167        char *buff = NULL;
    167168        int i;
     
    173174                return 1;
    174175        }
     176
     177        total = lseek(fd, 0, SEEK_END);
     178        lseek(fd, 0, SEEK_SET);
    175179
    176180        if (NULL == (buff = (char *) malloc(blen + 1))) {
     
    195199                                        wchar_t c = str_decode(buff, &offset, bytes);
    196200                                        if (c == 0) {
    197                                                 /* Reached end of string */
     201                                                // reached end of string
    198202                                                break;
    199203                                        }
     
    228232        int rc;
    229233       
    230         /*
    231          * reset global state
    232          * TODO: move to structure?
    233          */
     234        // reset global state
     235        // TODO: move to structure?
    234236        paging_enabled = false;
    235237        chars_remaining = 0;
Note: See TracChangeset for help on using the changeset viewer.