fix return type

This commit is contained in:
jiangzhengwenjz
2019-06-26 06:30:22 +08:00
parent 5f0e87bbb7
commit 1ba29fd2ed
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -18,6 +18,6 @@ void MultiBootInit(struct MultiBootParam *mp);
int MultiBootMain(struct MultiBootParam *mp);
void MultiBootStartProbe(struct MultiBootParam *mp);
void MultiBootStartMaster(struct MultiBootParam *mp, const u8 *srcp, int length, u8 palette_color, s8 palette_speed);
int MultiBootCheckComplete(struct MultiBootParam *mp);
bool32 MultiBootCheckComplete(struct MultiBootParam *mp);
#endif // GUARD_MULTIBOOT_H
+1 -1
View File
@@ -327,7 +327,7 @@ void MultiBootStartMaster(struct MultiBootParam *mp, const u8 *srcp, int length,
mp->probe_count = 0xd0;
}
int MultiBootCheckComplete(struct MultiBootParam *mp)
bool32 MultiBootCheckComplete(struct MultiBootParam *mp)
{
if (mp->probe_count == 0xe9)
return 1;