mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 21:51:40 +03:00
zip.d: fix printf formats
This commit is contained in:
parent
7a656e09d2
commit
f29f099321
1 changed files with 2 additions and 2 deletions
|
@ -372,8 +372,8 @@ final class ArchiveMember
|
|||
{
|
||||
void print()
|
||||
{
|
||||
printf("name = '%.*s'\n", name.length, name.ptr);
|
||||
printf("\tcomment = '%.*s'\n", comment.length, comment.ptr);
|
||||
printf("name = '%.*s'\n", cast(int) name.length, name.ptr);
|
||||
printf("\tcomment = '%.*s'\n", cast(int) comment.length, comment.ptr);
|
||||
printf("\tmadeVersion = x%04x\n", _madeVersion);
|
||||
printf("\textractVersion = x%04x\n", extractVersion);
|
||||
printf("\tflags = x%04x\n", flags);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue