Ignore:
File:
1 edited

Legend:

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

    r7308e84 r19f857a  
    3030#include <stdlib.h>
    3131#include <str.h>
    32 #include <sys/typefmt.h>
    3332#include "config.h"
    3433#include "util.h"
     
    6968        unsigned int argc;
    7069        unsigned int i, j;
    71         devmap_handle_t handle;
    72         aoff64_t offset;
     70        dev_handle_t handle;
    7371        uint8_t *blk;
    7472        size_t size, bytes, rows;
     
    121119        }
    122120
    123         offset = ba * block_size;
    124 
    125121        while (size > 0) {
    126122                rc = block_read_direct(handle, ba, 1, blk);
    127123                if (rc != EOK) {
    128                         printf("%s: Error reading block %" PRIuOFF64 "\n", cmdname, ba);
     124                        printf("%s: Error reading block %llu\n", cmdname, ba);
    129125                        free(blk);
    130126                        block_fini(handle);
     
    136132
    137133                for (j = 0; j < rows; j++) {
    138                         printf("[%06" PRIxOFF64 "] ", offset);
    139134                        for (i = 0; i < BPR; i++) {
    140135                                if (j * BPR + i < bytes)
     
    156151                                }
    157152                        }
    158                         offset += BPR;
    159153                        putchar('\n');
    160154                }
Note: See TracChangeset for help on using the changeset viewer.