You're missing a closing round-bracket on the 1st line. You have a ')' for GetLastError, then a ')' for GetErrorText, but you're missing a ')' for printf. It should be
Code:
if (StartCameraTask ()== -1)
{
printf( "Failed to spawn camera task; Error code %s",
GetErrorText (GetLastError())) };