我有以下代码
FRAME frameArray[5][10]; // Create the array of frames
int trackBufferFull[5] = {0, 0, 0, 0, 0};// Keeps track of how full the buffer for each node is
int trackFront[5] = {0, 0, 0, 0, 0}; // Array to keep track of which is the front of the array
int trackTail[5] = {0, 0, 0, 0, 0};
// Function to add to the array (CHANGE int frame)
void addFrame (int nodeNumber, FRAME frame)
{
//Calc tail
int tail = trackTail[nodeNumber-1];
// Calc frames in buffer
int framesinBuffer = trackBufferFull[nodeNumber-1];
if (framesinBuffer == 10)
{
printf("Buffer is full\n");
}
else
{
// Add frame to frameArray
frameArray[nodeNumber-1][tail] = frame;
printf("\nAdded a frame in node: %i to the buffer\n", nodeNumber);
// Increment the count
trackBufferFull[nodeNumber-1]++;
trackTail[nodeNumber-1] = ++trackTail[nodeNumber-1] % 10;
}
}
我用于 frameArray 的数组是长度为 10 的环绕/循环数组,因此我有代码
trackTail[nodeNumber-1] = ++trackTail[nodeNumber-1] % 10;
一切都在独立文件中完美运行,但是在更大的文件中运行时,出现以下编译错误:
$ cnet GARETH -m 30
compiling gareth.c
gareth.c: In function ‘addFrame’:
gareth.c:77:27: error: operation on ‘trackTail[nodeNumber + -0x00000000000000001]’ may be undefined [-Werror=sequence-point]
gareth.c: In function ‘removeFirstFrame’:
gareth.c:98:28: error: operation on ‘trackFront[nodeNumber + -0x00000000000000001]’ may be undefined [-Werror=sequence-point]
gareth.c:105:1: error: control reaches end of non-void function [-Werror=return-type]
cc1: all warnings being treated as errors
77号线是线
trackTail[nodeNumber-1] = ++trackTail[nodeNumber-1] % 10;
帮助。
为了并排查看带有行号的代码和错误,我将图片上传到:http: //i.imgur.com/wyO5a.png