removing some extra whitespace to cleanup the diff

This commit is contained in:
Keenan Lang
2014-09-02 16:44:47 -05:00
parent 64a98452e3
commit ee197893e7
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ macDefExpand(const char *str, MAC_HANDLE *macros)
return NULL;
}
}
do {
destCapacity *= 2;
/*

View File

@@ -44,7 +44,7 @@ epicsShareFunc void epicsShareAPI epicsEnvSet (const char *name, const char *val
cp = mallocMustSucceed (strlen (name) + strlen (value) + 2, "epicsEnvSet");
strcpy (cp, name);
strcat (cp, "=");
strcat (cp, value);
strcat (cp, value);
if (putenv (cp) < 0) {
errPrintf(
-1L,