test_seek_read.c: remove unused variable 'off64_t so'

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
This commit is contained in:
Danny Al-Gaaf 2013-11-05 22:01:42 +01:00
parent 0da5a019f5
commit 91627f2d33

View File

@ -38,7 +38,7 @@ int main(int argc, char **argv)
utime_t start = ceph_clock_now(g_ceph_context);
for (int i=0; i<count; i++) {
off64_t so, o = (lrand48() % numblocks) * 4096;
off64_t o = (lrand48() % numblocks) * 4096;
//cout << "s = " << s << " o = " << o << endl;
//::lseek(fd, o, SEEK_SET);
lseek64(fd, o, SEEK_SET);