aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan D. Brunelle <alan.brunelle@hp.com>2010-11-29 10:34:30 -0500
committerAlan D. Brunelle <alan.brunelle@hp.com>2010-11-29 10:34:30 -0500
commita788dfde86dfaff8f1c277a233f92c1822e06b76 (patch)
treedc08d8a1d2946dfd7bdcf3ca0feceae045b4a41e
parent5798ffb25496ab8dcb419a2bdc5418802d7f10fc (diff)
downloadblktrace-a788dfde86dfaff8f1c277a233f92c1822e06b76.tar.gz
Fixed build warning for btreplay
btreplay.c:1332: warning: comparison between signed and unsigned integer expressions
-rw-r--r--btreplay/btreplay.c2
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;