diff options
Diffstat (limited to 'trans')
-rw-r--r-- | trans/firmlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trans/firmlink.c b/trans/firmlink.c index df8629ae..087e19d0 100644 --- a/trans/firmlink.c +++ b/trans/firmlink.c @@ -225,7 +225,7 @@ trivfs_S_io_read (struct trivfs_protid *cred, err = (*data == MAP_FAILED) ? errno : 0; if (!err && amount > 0) { - memcpy ((char *)(*data + start), target, amount); + memcpy (*data, target + start, amount); if (offs < 0) cred->po->hook = (void *)(start + amount); /* Update PO offset. */ } |