Hi.

In the given example of the D1 std.md5, this line can be found:
while ((len = fread(buffer, 1, buffer.sizeof, file)) != 0)

This isn't working here (DMD v1.042, Windows XP Pro). I had to replace it with:
while ((len = fread(buffer.ptr, cast(uint)1, buffer.sizeof, file)) != 0)
                           ^^^  ^^^^^^^^^^

Someone may want to check & adopt this in the std.md5 module...

Thanks & regards
notna

Reply via email to