Displaying 2 results from an estimated 2 matches for "actul".
Did you mean:
actual
2010 Apr 21
1
Re : Install latest R version from apt on Lenny
OK, thanks both. I'll try that. I suspect (very strongly) that it comes from the fact that I did not replace the cran mirror line by an actulal cran mirror URLs... I will give a look at all my backports this weekend and do a little cleaning too!
thanks,
David Biau.
#################################
From: Johannes Ranke <jranke@uni-bremen.de>
To: r-sig-debian@r-project.org
Subject: Re: [R-sig-Debian] Re : Install latest R ve...
2006 Jun 12
0
Some questions about function usage
...following:
blk_t target_blks[EXT_N_BLOCKS];
retval = ext2fs_get_blocks(fs, ino, target_blks);
printf("[percentage]u [percentage]u [percentage]u",
*target_blks, target_blks[1], target_blks[2]);
P.S. [percentage] is "shift+5"
The output of printf is strange.
*target_blks is the actul block number of the first block of target inode.
But target_blks[1] and target_blks[2] always 0(zero).
Why and how I get the correct an array of blocks?
2.
I get a "Attempt to write block from filesystem resulted in short write"
when I calling io_channel_write_byte( ).
Why?
My code:
uns...