arch/addrenv: Add missing FAR qualifier to addrenv_mprot

This commit is contained in:
Ville Juven
2022-05-17 11:12:57 +02:00
committed by Abdelatif Guettouche
parent 06f2c67fc2
commit c2d179a2f4
+2 -2
View File
@@ -1203,8 +1203,8 @@ int up_addrenv_detach(FAR struct task_group_s *group, FAR struct tcb_s *tcb);
****************************************************************************/
#ifdef CONFIG_ARCH_ADDRENV
int up_addrenv_mprot(group_addrenv_t *addrenv, uintptr_t addr, size_t len,
int prot);
int up_addrenv_mprot(FAR group_addrenv_t *addrenv, uintptr_t addr,
size_t len, int prot);
#endif
/****************************************************************************