typo: missing spaces in messages

This commit is contained in:
2015-11-03 11:16:16 +01:00
parent ac9f962b78
commit ea41e14f0f
+3 -3
View File
@@ -1327,14 +1327,14 @@ static int require_priv(const char* module, const char* version, const char* arg
if (!found)
{
if (someArchFound)
fprintf(stderr, "Module%s%s%s not available for %s\n(but maybe for other EPICS versions or architectures)\n",
fprintf(stderr, "Module %s%s%s not available for %s\n(but maybe for other EPICS versions or architectures)\n",
module, version ? " version " : "", version ? version : "", targetArch);
else
if (someVersionFound)
fprintf(stderr, "Module%s%s%s not available (but other versions are available)\n",
fprintf(stderr, "Module %s%s%s not available (but other versions are available)\n",
module, version ? " version " : "", version ? version : "");
else
fprintf(stderr, "Module%s%s%s not available\n",
fprintf(stderr, "Module %s%s%s not available\n",
module, version ? " version " : "", version ? version : "");
return ifexists ? 0 : -1;
}