[PATCH] blkparse: Fix mistaken double rb lookup in find_track()
authorNathan Scott <nathans@sgi.com>
Mon, 12 Sep 2005 07:21:00 +0000 (09:21 +0200)
committerJens Axboe <axboe@suse.de>
Mon, 12 Sep 2005 07:21:00 +0000 (09:21 +0200)
blkparse.c

index 4b9fa073d855e31d8f3e87291deb7a7c39cbb029..c9b79de786e24ec3f98a97d679ae1be398b0f1bf 100644 (file)
@@ -274,7 +274,7 @@ static struct io_track *__find_track(__u64 sector)
 
 static struct io_track *find_track(__u32 pid, __u64 sector)
 {
-       struct io_track *iot = __find_track(sector);
+       struct io_track *iot;
 
        iot = __find_track(sector);
        if (!iot) {