ciao a tutti, non riesco a capire xchè mi da questo errore

l'errore me lo da su questa linea
Codice PHP:
head InserimentoOrdinatoLista(headheadParolaPOSLemmaj); 
head è definito come
Codice PHP:
NODO head=NULL
il prototipo della funzione è
Codice PHP:
NODO InserimentoOrdinatoLista(NODO headNODO precchar ParolaIns[], char PosIns[], char LemmaIns[], int i
e la struttura è
Codice PHP:
typedef struct nodo {
    
int frequenza;
    
struct nodo next;
    
char parola[100];
    
char Pos[10];
    
char Lemma[100];
    } 
NODO
xchè mi da questo errore? sperando che riusciate a capire con queste info, altrimenti incollerò tutto il codice.

Premetto che funziona tutto alla perfezione ma odio vedere quel warning ogni volta che compilo (ah e dire anche che alcune volte non lo segnala e altre si)

grazie ciao