We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb898d6 commit d82e345Copy full SHA for d82e345
entries/abouchez/src/brcmormot.lpr
@@ -534,7 +534,8 @@ function TBrcMain.SortedText: RawUtf8;
534
assert(SizeOf(TBrcStation) = 64); // 64 bytes = CPU L1 cache line size
535
// read command line parameters
536
Executable.Command.ExeDescription := 'The mORMot One Billion Row Challenge';
537
- fn := Executable.Command.ArgString(0, 'the data source #filename');
+ if Executable.Command.Arg(0, 'the data source #filename') then
538
+ Utf8ToFileName(Executable.Command.Args[0], fn);
539
verbose := Executable.Command.Option(
540
['v', 'verbose'], 'generate verbose output with timing');
541
affinity := Executable.Command.Option(
0 commit comments