diff options
author | Alan D. Brunelle <alan.brunelle@hp.com> | 2010-11-29 10:34:30 -0500 |
---|---|---|
committer | Alan D. Brunelle <alan.brunelle@hp.com> | 2010-11-29 10:34:30 -0500 |
commit | a788dfde86dfaff8f1c277a233f92c1822e06b76 (patch) | |
tree | dc08d8a1d2946dfd7bdcf3ca0feceae045b4a41e | |
parent | 5798ffb25496ab8dcb419a2bdc5418802d7f10fc (diff) | |
download | blktrace-a788dfde86dfaff8f1c277a233f92c1822e06b76.tar.gz blktrace-a788dfde86dfaff8f1c277a233f92c1822e06b76.tar.bz2 |
Fixed build warning for btreplay
btreplay.c:1332: warning: comparison between signed and unsigned integer
expressions
-rw-r--r-- | btreplay/btreplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/btreplay/btreplay.c b/btreplay/btreplay.c index cba099a..f4f5aa0 100644 --- a/btreplay/btreplay.c +++ b/btreplay/btreplay.c @@ -1314,7 +1314,7 @@ static void reset_input_file(struct thr_info *tip) */ static void *replay_sub(void *arg) { - int i; + unsigned int i; char *mdev; char path[MAXPATHLEN]; struct io_bunch bunch; |