Fixed HP-GNU warning (unused variable)

This commit is contained in:
Ralph Lange
2003-05-06 12:55:56 +00:00
parent f04fff8f83
commit e3ceeb0eac

View File

@@ -68,7 +68,9 @@ epicsShareFunc osiGetUserNameReturn epicsShareAPI osiGetUserName (char *pBuf, un
static int maxPosixFD ( )
{
int max;
# if ! defined (OPEN_MAX)
static const int bestGuess = 1024;
# endif
# if defined (_SC_OPEN_MAX) /* posix */
max = sysconf (_SC_OPEN_MAX);