1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

stdint compliance

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@123 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
dankers 2009-12-24 03:03:24 +00:00 committed by dankers
parent ebeed14ce4
commit 3e76e78f47

View File

@ -79,7 +79,7 @@ void PIOS_Settings_Dump(USART_TypeDef* USARTx)
* \return 0 All files found
* \return >0 Number of files missing
*/
int PIOS_Settings_CheckForFiles(void)
int32_t PIOS_Settings_CheckForFiles(void)
{
FILINFO DummyVar;
int MissingCount = 0;
@ -97,4 +97,4 @@ int PIOS_Settings_CheckForFiles(void)
/* All files found */
return 0;
}
}