A missing semicolon prevents libpayload to compile, this patch fixes that.
Signed-off-by: Jakob Bornecrantz <[EMAIL PROTECTED]>
Index: include/libpayload.h =================================================================== --- include/libpayload.h (revision 3532) +++ include/libpayload.h (working copy) @@ -303,6 +303,6 @@ /* libc/readline.c */ char * readline(const char * prompt); -int getline(char *buffer, int len) +int getline(char *buffer, int len); #endif
-- coreboot mailing list [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

