From: Tobias Diedrich Date: Wed, 21 Oct 2015 20:05:26 +0000 (+0200) Subject: Fix warning in tinf.h: function declaration isn't a prototype X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=refs%2Fpull%2F82%2Fhead;p=oweals%2Fu-boot_mod.git Fix warning in tinf.h: function declaration isn't a prototype --- diff --git a/u-boot/include/tinf.h b/u-boot/include/tinf.h index 1dc1666..714fc05 100644 --- a/u-boot/include/tinf.h +++ b/u-boot/include/tinf.h @@ -30,7 +30,7 @@ extern "C" { /* function prototypes */ -void TINFCC tinf_init(); +void TINFCC tinf_init(void); int TINFCC tinf_uncompress(void *dest, unsigned int *destLen, const void *source, unsigned int sourceLen);