loopback.c: fix bug in call to buse_main()

This commit is contained in:
Pete Nelson 2013-06-27 15:09:17 -04:00
parent 8439322930
commit c322c1035f
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ int main(int argc, char *argv[])
fprintf(stderr, "The size of this device is %ld bytes.\n", size);
bop.size = size;
buse_main(argv[1], &bop, NULL);
buse_main(argv[2], &bop, NULL);
return 0;
}