This fix is provided by Steffen Unger, GMD. Compilation error on T3E when building the MPP version of the model. This part of FLIC is not used in MM5, so aside from breaking the compilation, there is no other effect from this bug. -Rotang ---------------------------------------------------------------------------------------- The file in question is: MPP/FLIC/FLIC/handle_executable.c . The message is: CC-513 cc: ERROR File = handle_executable.c, Line = 521 A value of type "TokInfoPtr" cannot be assigned to an entity of type "NodePtr". ELDER(NewNode) = p ; ^ 1 error detected in the compilation of "handle_executable.c". Make: "cc -c -w -g -I../h handle_executable.c": Error code 1 --- Fix: Change the p to q: ELDER(NewNode) = q ; ^