From ea41e14f0f9f01c950808a089ec0abf6c521c7a9 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Tue, 3 Nov 2015 11:16:16 +0100 Subject: [PATCH] typo: missing spaces in messages --- require.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/require.c b/require.c index e685c45..7213956 100644 --- a/require.c +++ b/require.c @@ -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; }