File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -204,19 +204,19 @@ int QmlGuiMain(int argc, char* argv[])
204
204
SetupUIArgs (gArgs );
205
205
std::string error;
206
206
if (!gArgs .ParseParameters (argc, argv, error)) {
207
- InitError (strprintf ( Untranslated (" Cannot parse command line arguments: %s\n " ) , error));
207
+ InitError (Untranslated (strprintf ( " Cannot parse command line arguments: %s\n " , error) ));
208
208
return EXIT_FAILURE;
209
209
}
210
210
211
211
// / Determine availability of data directory.
212
212
if (!CheckDataDirOption (gArgs )) {
213
- InitError (strprintf ( Untranslated (" Specified data directory \" %s\" does not exist.\n " ) , gArgs .GetArg (" -datadir" , " " )));
213
+ InitError (Untranslated (strprintf ( " Specified data directory \" %s\" does not exist.\n " , gArgs .GetArg (" -datadir" , " " ) )));
214
214
return EXIT_FAILURE;
215
215
}
216
216
217
217
// / Read and parse bitcoin.conf file.
218
218
if (!gArgs .ReadConfigFiles (error, true )) {
219
- InitError (strprintf ( Untranslated (" Cannot parse configuration file: %s\n " ) , error));
219
+ InitError (Untranslated (strprintf ( " Cannot parse configuration file: %s\n " , error) ));
220
220
return EXIT_FAILURE;
221
221
}
222
222
You can’t perform that action at this time.
0 commit comments