diff options
author | hpa <hpa> | 2004-12-31 00:40:26 +0000 |
---|---|---|
committer | hpa <hpa> | 2004-12-31 00:40:26 +0000 |
commit | 109c9019f3cfb383c25a58d06aa0004c9688a9f2 (patch) | |
tree | e7d1fda295daa2a37005343155eb0e7dcae7254d | |
parent | 3b511fcdc685acb8f0bb3431cc1e39784dcf6a66 (diff) | |
download | syslinux-109c9019f3cfb383c25a58d06aa0004c9688a9f2.tar.gz |
Remove redundant "ebp" reference
-rw-r--r-- | menu/biosio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/menu/biosio.c b/menu/biosio.c index f3d909f3..9927ffb1 100644 --- a/menu/biosio.c +++ b/menu/biosio.c @@ -141,7 +141,7 @@ static inline void asm_putchar(char x, char attr,char page) "call bios_int10" : "+a" (x) : "abcdmi" (page), "acdmi" (attr) - : "ebx", "ecx", "ebp"); + : "ebx", "ecx"); } void putch(char x, char attr, char page) |