Problem passing array to a function

Sorry Mike but i have never programmed in C :frowning: so i can't understand...

Trying to pass just an integer i've modified into

void uptime(int *returninfo){
}

void loop(){
          uptime(uptimeinfo[0]);
}

but IDE tells me:

In function 'void normalProgram()':
error: invalid conversion from 'int' to 'int*

What does it mean?

Nevertheless, i'd like to pass the array not just one element and i can't understand the way :frowning: