File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1194,7 +1194,7 @@ static bool LockDataDirectory(bool probeOnly)
11941194 return UIError (strprintf (_ (" Cannot write to data directory '%s'; check permissions." ), datadir.string ()));
11951195 }
11961196 if (!LockDirectory (datadir, " .lock" , probeOnly)) {
1197- return UIError (strprintf (_ (" Cannot obtain a lock on data directory %s. %s is probably already running." ), datadir.string (), _ ( PACKAGE_NAME) ));
1197+ return UIError (strprintf (_ (" Cannot obtain a lock on data directory %s. %s is probably already running." ), datadir.string (), PACKAGE_NAME));
11981198 }
11991199 return true ;
12001200}
@@ -1210,7 +1210,7 @@ bool AppInitSanityChecks()
12101210
12111211 // Sanity check
12121212 if (!InitSanityCheck ())
1213- return UIError (strprintf (_ (" Initialization sanity check failed. %s is shutting down." ), _ ( PACKAGE_NAME) ));
1213+ return UIError (strprintf (_ (" Initialization sanity check failed. %s is shutting down." ), PACKAGE_NAME));
12141214
12151215 // Probe the data directory lock to give an early error message, if possible
12161216 return LockDataDirectory (true );
You can’t perform that action at this time.
0 commit comments