diff options
author | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-06-26 06:30:22 +0800 |
---|---|---|
committer | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-06-26 06:30:22 +0800 |
commit | 1ba29fd2ed12d86d39e64b952f0f69cc36add132 (patch) | |
tree | 1b25da7744f147ca99e33485ceed53bc00bb0687 /include/multiboot.h | |
parent | 5f0e87bbb7d19f780d4f33fdd96256555942807f (diff) |
fix return type
Diffstat (limited to 'include/multiboot.h')
-rw-r--r-- | include/multiboot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/multiboot.h b/include/multiboot.h index 4b4a3693a..ee0a34c83 100644 --- a/include/multiboot.h +++ b/include/multiboot.h @@ -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 |