Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3532 → Rev 3533

/trunk/uspace/srv/fs/fat/fat_ops.c
539,7 → 539,8
* requested. This keeps the code very simple.
*/
if (pos >= nodep->size) {
bytes = 0; /* reading beyond the EOF */
/* reading beyond the EOF */
bytes = 0;
(void) ipc_data_read_finalize(callid, NULL, 0);
} else {
bytes = min(len, bps - pos % bps);