diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/kexec-uImage.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/kexec-uImage.h b/include/kexec-uImage.h index e8a4b69..8c7707d 100644 --- a/include/kexec-uImage.h +++ b/include/kexec-uImage.h @@ -2,12 +2,12 @@ #define __KEXEC_UIMAGE_H__ struct Image_info { - const char *buf; + const unsigned char *buf; off_t len; unsigned int base; unsigned int ep; }; -int uImage_probe(const char *buf, off_t len, unsigned int arch); -int uImage_load(const char *buf, off_t len, struct Image_info *info); +int uImage_probe(const unsigned char *buf, off_t len, unsigned int arch); +int uImage_load(const unsigned char *buf, off_t len, struct Image_info *info); #endif |