Dan Lukes wrote:
> >> - printf("expecting %lu, got only %d bytes.\n", len, r);
> >> + printf("expecting %u, got only %d bytes.\n", len, r);
>
> > In fact the correct answer is %zu [1]
> > But this does not work on Windows.
>
> Then use %llu and cast len to unsigned long longOr use an stdint type. How long will len be? //Peter _______________________________________________ opensc-devel mailing list [email protected] http://www.opensc-project.org/mailman/listinfo/opensc-devel
