[coreboot] r3533 - trunk/payloads/libpayload/include

svn at coreboot.org svn at coreboot.org
Sat Aug 23 14:17:47 CEST 2008


Author: stepan
Date: 2008-08-23 14:17:46 +0200 (Sat, 23 Aug 2008)
New Revision: 3533

Modified:
   trunk/payloads/libpayload/include/libpayload.h
Log:
A missing semicolon prevents libpayload to compile, this patch fixes that.

Signed-off-by: Jakob Bornecrantz <wallbraker at gmail.com>
Acked-by: Stefan Reinauer <stepan at coresystems.de>



Modified: trunk/payloads/libpayload/include/libpayload.h
===================================================================
--- trunk/payloads/libpayload/include/libpayload.h	2008-08-20 20:31:41 UTC (rev 3532)
+++ trunk/payloads/libpayload/include/libpayload.h	2008-08-23 12:17:46 UTC (rev 3533)
@@ -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





More information about the coreboot mailing list