Skip to content
Snippets Groups Projects
Commit 60a8c119 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Clarify name of constant.

parent 6c8e51d1
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ static struct rdmaWin
} *txWin = NULL;
char * funcMap[nFuncs] = {"streamOpen", "streamDefVlist", "streamClose" };
char * funcMap[numRPCFuncs] = {"streamOpen", "streamDefVlist", "streamClose" };
float cdiPIOpartInflate_;
......
......@@ -29,15 +29,15 @@ enum
enum
{
nFuncs = 3,
numRPCFuncs = 3,
STREAMOPEN = -1,
STREAMDEFVLIST = -2,
STREAMCLOSE = -3,
HEADERSIZEMARKER = -nFuncs - 1,
PARTDESCMARKER = -nFuncs - 2,
HEADERSIZEMARKER = -numRPCFuncs - 1,
PARTDESCMARKER = -numRPCFuncs - 2,
};
enum { MAXDATAFILENAME = 256, MINFUNCID = STREAMCLOSE, MAXFUNCID = STREAMOPEN };
extern char * funcMap[nFuncs];
extern char * funcMap[numRPCFuncs];
struct headerSize
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment