summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/chdman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/chdman.c')
-rw-r--r--src/tools/chdman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/chdman.c b/src/tools/chdman.c
index 9eee05b8826..9384566eb54 100644
--- a/src/tools/chdman.c
+++ b/src/tools/chdman.c
@@ -1698,7 +1698,7 @@ static void do_create_hd(parameters_t &params)
astring *size_str = params.find(OPTION_SIZE);
if (size_str != NULL)
{
- if (sscanf(*size_str, "%"I64FMT"d", &filesize) != 1)
+ if (sscanf(*size_str, "%" I64FMT"d", &filesize) != 1)
report_error(1, "Invalid size string");
}
}