remove compiler warning nchar uninitialized

This commit is contained in:
zimoch
2013-11-25 16:36:22 +00:00
parent 32ead249ed
commit 92c0f471db

View File

@@ -106,7 +106,7 @@ epicsShareFunc int errlogPrintf(const char *pFormat, ...)
{
va_list pvar;
char *pbuffer;
int nchar;
int nchar = 0;
int isOkToBlock;
if (epicsInterruptIsInterruptContext()) {