mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
use %lu instead of %d for unsigned formatting
svn path=/trunk/; revision=15825
This commit is contained in:
parent
1413f0bd4c
commit
72448a5e50
1 changed files with 1 additions and 1 deletions
|
@ -1716,7 +1716,7 @@ ShowPartitionSizeInputBox(SHORT Left,
|
|||
strlen (Buffer),
|
||||
coPos);
|
||||
|
||||
sprintf(Buffer, "%d", MaxSize);
|
||||
sprintf(Buffer, "%lu", MaxSize);
|
||||
Index = strlen(Buffer);
|
||||
DrawInputField (PARTITION_SIZE_INPUT_FIELD_LENGTH,
|
||||
iLeft,
|
||||
|
|
Loading…
Reference in a new issue