Reacted on -Wsign-compare warnings of gcc

This commit is contained in:
Thomas Schmitt 2011-05-12 13:52:23 +00:00
parent 0ac6a64f12
commit 7a9a7dfdd2
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ int main()
newact.sa_handler = catch_int; newact.sa_handler = catch_int;
sigaction(SIGINT, &newact, &oldact); sigaction(SIGINT, &newact, &oldact);
for (i = 0; i < n_drives; i++) { for (i = 0; i < (int) n_drives; i++) {
NEXT=0; NEXT=0;
poll_drive(i); poll_drive(i);
} }